This commit is contained in:
2025-05-20 14:15:03 -07:00
parent c074a5ef18
commit edcad561a5
179 changed files with 52733 additions and 4704 deletions

21
tpl/location-tile.tpl Normal file
View File

@@ -0,0 +1,21 @@
<div class="location-tile">
<div class="leaflet-map" data-lat="{{ latitude }}" data-lng="{{ longitude }}" data-title="{{ title }}"></div>
<div class="d-flex justify-content-between">
<div class="left">
<h2>{{ title }}</h2>
<p class="address">{{ address_1 }}<br />
{{#if city}}
{{ city }},
{{else}}
{{ title }},
{{/if}}
{{ state }} {{ zip }}<br />
<a href="tel:{{ phone }}">{{ phone }}</a>
</div>
<div class="right">
<p class="cta-button"><a href="{{ url }}">Contact Us</a></p>
</div>
</div>
</div>