View google-ads-country-list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Afghanistan | |
Albania | |
Algeria | |
American Samoa | |
Andorra | |
Angola | |
Anguilla | |
Antarctica | |
Antigua and Barbuda | |
Argentina |
View gist:7371ad1b61be8dfe428caac5f0a12990
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% macro state_contacts(stateCode) %} | |
{{ stateCode }} | |
{% endmacro %} | |
{{ state_contacts("US-AL","US-AK","US-AS","US-AZ","US-AR","US-CA","US-CO","US-CT","US-DE","US-DC","US-FL","US-GA","US-HI","US-ID","US-IL","US-IN","US-IA","US-KS","US-KY","US-LA","US-ME","US-MD","US-MA","US-MI","US-MN","US-MS","US-MO","US-MT","US-NE","US-NV","US-NH","US-NJ","US-NM","US-NY","US-NC","US-ND","US-MP","US-OH","US-OK","US-OR","US-PA","US-RI","US-SC","US-SD","US-TN","US-TX","US-UT","US-VT","US-VA","US-WA","US-WV","US-WI","US-WY","CA-AB","CA-BC","CA-MB","CA-NB","CA-NL","CA-NS","CA-ON","CA-PE","CA-QC","CA-SK") }} | |
{# Use macro for logic below #} | |
{% set contacts_us_ar = [] %} | |
{% for row in table %} |
View gist:9744552713ef1be1464095af1adf5d14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
#################################################################### | |
Include External Header & Footer ----------------------------------- | |
# external server needs to have CORS - enabled https://enable-cors.org/ | |
# more examples - https://www.tutorialrepublic.com/jquery-tutorial/jquery-ajax-load.php | |
#################################################################### | |
*/ | |
$(document).ready(function() { | |
// Give the body a class so that you can write styles to target the page |
View bootstrap-4.1.1-utility-classes.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.align-baseline { | |
vertical-align: baseline !important; | |
} | |
.align-top { | |
vertical-align: top !important; | |
} | |
.align-middle { |
View gist:781058e9af559cfc9091bffd2ed1b5ed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Apply URL parameters to Register Button if present | |
var changeTarget = document.getElementById('registerBtn'); | |
var params = window.location.search; | |
var _href = changeTarget.href; | |
// Does the page have url parameters ? | |
if (params) { | |
// yes - add them to the iframe src | |
changeTarget.href = _href+params; | |
console.log("url params = " + params); |
View bootstrap-5-classes-list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* v5.1.0 - August 2021 */ | |
.accordion-body | |
.accordion-button | |
.accordion-collapse | |
.accordion-flush | |
.accordion-header | |
.accordion-item | |
.active | |
.alert | |
.alert-danger |
View gist:cf1d41aadbc87eacafccf57ee8cc0fda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if module.title is truthy %} | |
{% set no_title = False %} | |
{% else %} | |
{% set no_title = True %} | |
{% endif %} | |
{% if module.form.form_id %} | |
{% form | |
form_key='{{ name }}', | |
form_to_use='{{ module.form.form_id }}', |
View gist:e9dcc798dacca0432a3c5f2a4823f170
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(.*)(hubspot|hs-sites)(.*) |
View gist:b8f342839cc9592bb91791466c698a87
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="{{ html_lang }}" {{ html_lang_dir }}> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="{{ html_lang }}" {{ html_lang_dir }}> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9" lang="{{ html_lang }}" {{ html_lang_dir }}> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="{{ html_lang }}" {{ html_lang_dir }}> <!--<![endif]--> |
View gist:777b7a8f554ef38db1c246e2651eb19a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
############################# | |
Hero Image | |
--> | |
{% image_src "intro_image" label="Intro Image" src='', no_wrapper=True, export_to_template_context=True %} | |
{% if widget_data.intro_image.src %} | |
{% text "intro_link" label="Intro Image Link", value="https://www.altair.com/", no_wrapper=True, export_to_template_context=True %} | |
<tr> | |
<td valign="top" width="100.0%" class=" img-fluid column" style="width:100.0%; text-align: left; padding: 0; font-family: {{ primary_font }}; font-size: {{ primary_font_size }}; line-height: {{ primary_font_lheight }}em; color: {{ primary_font_color }}; "> |
NewerOlder