forked from PrestaShop/hummingbird
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathps_contactinfo.tpl
More file actions
43 lines (34 loc) · 1.46 KB
/
ps_contactinfo.tpl
File metadata and controls
43 lines (34 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
<div class="footer__block block-contact col-md-6 col-lg-3">
<p class="footer__block__title d-none d-md-flex">{l s='Store information' d='Shop.Theme.Global'}</p>
<div class="footer__block__toggle d-md-none collapsed" data-bs-target="#contact-infos" data-bs-toggle="collapse" aria-expanded="false">
<span class="footer__block__title">{l s='Store information' d='Shop.Theme.Global'}</span>
<i class="material-icons" aria-hidden="true">arrow_drop_down</i>
</div>
<div id="contact-infos" class="footer__block__content footer__block__content-contact collapse">
<div class="contact__infos">
{$contact_infos.address.formatted nofilter}
</div>
{if $contact_infos.phone}
<div class="contact__phone">
<i class="material-icons" aria-hidden="true">phone</i>
<a href="tel:{$contact_infos.phone}">{$contact_infos.phone}</a>
</div>
{/if}
{if $contact_infos.fax}
<div class="contact__fax">
<i class="material-icons" aria-hidden="true">fax</i>
<a href="fax:{$contact_infos.fax}">{$contact_infos.fax}</a>
</div>
{/if}
{if $contact_infos.email && $display_email}
<div class="contact__email">
<i class="material-icons" aria-hidden="true">mail</i>
{mailto address=$contact_infos.email encode="javascript"}
</div>
{/if}
</div>
</div>