45 lines
1.4 KiB
Smarty
45 lines
1.4 KiB
Smarty
<section class="top-image" style="background-image: url({{ thumbnail }})">
|
|
|
|
</section>
|
|
|
|
<section class="location">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h1>{{ title }} Location</h1>
|
|
<p>{{{ intro }}}</p>
|
|
|
|
<div class="form-wrapper">
|
|
{{{ form }}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col">
|
|
<div class="leaflet-map" data-lat="{{ latitude }}" data-lng="{{ longitude }}" data-title="{{ title }}"></div>
|
|
|
|
<div class="d-flex justify-content-between">
|
|
<div class="address">
|
|
<p><strong>{{ title }} Store:</strong><br />
|
|
{{ address_1 }}<br />
|
|
{{#if city}}
|
|
{{ city }},
|
|
{{else}}
|
|
{{ title }},
|
|
{{/if}}
|
|
|
|
{{ state }} {{ zip }}<br />
|
|
<a href="tel:{{ phone }}">{{ phone }}</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="hours">
|
|
<p><strong>Hours:</strong><br />
|
|
{{#nl2br hours }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|