Files
newwalls.pl/modules/roy_contactinfo/roy_contactinfo.tpl
2024-12-17 13:43:22 +01:00

53 lines
1.6 KiB
Smarty

<div class="block-contact col-md-4 links wrapper">
<div class="hidden-sm-down">
<h4 class="text-uppercase block-contact-title">{l s='Store information' d='Shop.Theme.Global'}</h4>
<img class="logo_footer" src="{$urls.img_url}logo_footer.png" />
<p>
{$contact_infos.address.formatted nofilter}
{if $contact_infos.phone}
<br>
{* [1][/1] is for a HTML tag. *}
{l s='Call us: [1]%phone%[/1]'
sprintf=[
'[1]' => '<span>',
'[/1]' => '</span>',
'%phone%' => $contact_infos.phone
]
d='Shop.Theme.Global'
}
{/if}
{if $contact_infos.fax}
<br>
{* [1][/1] is for a HTML tag. *}
{l
s='Fax: [1]%fax%[/1]'
sprintf=[
'[1]' => '<span>',
'[/1]' => '</span>',
'%fax%' => $contact_infos.fax
]
d='Shop.Theme.Global'
}
{/if}
{if $contact_infos.email}
<br>
{* [1][/1] is for a HTML tag. *}
{l
s='Email us: [1]%email%[/1]'
sprintf=[
'[1]' => '<a href="mailto:'|cat:$contact_infos.email|cat:'" class="dropdown">',
'[/1]' => '</a>',
'%email%' => $contact_infos.email
]
d='Shop.Theme.Global'
}
{/if}
</p>
</div>
<div class="hidden-md-up">
<div class="title">
<a class="h3" href="{$urls.pages.stores}">{l s='Store information' d='Shop.Theme.Global'}</a>
</div>
</div>
</div>