Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created August 10, 2018 20:35
Show Gist options
  • Select an option

  • Save NickDeckerDevs/d2e2bf3739eba0896718c1e030834260 to your computer and use it in GitHub Desktop.

Select an option

Save NickDeckerDevs/d2e2bf3739eba0896718c1e030834260 to your computer and use it in GitHub Desktop.
hubspot email using multiple locations on a contact property value
{% if widget_data.location.value == "zieglerville-perkiomenville" %}
Little’s of Zieglerville/Perkiomenville<br>
3 Little Road<br>
Perkiomenville, PA 18074<br>
<img border="0" src="http://cdn2.hubspot.net/hubfs/1919990/Images/icons/phone.png" alt="Phone " style="border:0;"><a style="color: #fff;" href="tel:610-287-9643">610-287-9643</a>
{% elif widget_data.location.value == "hatboro" %}
Little’s of Hatboro<br>
335 S. York Road<br>
Hatboro, PA 19040<br>
<img border="0" src="http://cdn2.hubspot.net/hubfs/1919990/Images/icons/phone.png" alt="Phone " style="border:0;"><a style="color: #fff;" href="tel:610-873-2001">610-873-2001</a>
{% elif widget_data.location.value == "pottstown" %}
Little’s of Pottstown<br>
2555 Pottstown Pike<br>
Pottstown, PA 19465<br>
<img border="0" src="http://cdn2.hubspot.net/hubfs/1919990/Images/icons/phone.png" alt="Phone " style="border:0;"><a style="color: #fff;" href="tel:484-985-8021">484-985-8021</a>
{% elif widget_data.location.value == "downingtown" %}
Little’s of Downington<br>
221 Boot Road<br>
Downingtown, PA 19335<br>
<img border="0" src="http://cdn2.hubspot.net/hubfs/1919990/Images/icons/phone.png" alt="Phone " style="border:0;"><a style="color: #fff;" href="tel:610-873-2001">610-873-2001</a>
{% elif widget_data.location.value == "silverdale" %}
Little’s of Silverdale<br>
141 E. Main Street<br>
Silverdale, PA 18962<br>
<img border="0" src="http://cdn2.hubspot.net/hubfs/1919990/Images/icons/phone.png" alt="Phone " style="border:0;"><a style="color: #fff;" href="tel:215-257-5177">215-257-5177</a>
{% else %}
{{ site_settings.company_street_address_1 }}{% if site_settings.company_street_address_2 %}, {{ site_settings.company_street_address_2 }}{% endif %}<br>
{{ site_settings.company_city }}, {{ site_settings.company_state }} {{ site_settings.company_zip }}<br>
<img border="0" src="http://cdn2.hubspot.net/hubfs/1919990/Images/icons/phone.png" alt="Phone " style="border:0;"><a style="color: #fff;" href="tel:{{ site_settings.company_phone }}">{{ site_settings.company_phone }}</a>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment