Files
kupshop/web/templates/x/components/block.switcher.tpl
2025-08-02 16:30:27 +02:00

19 lines
652 B
Smarty

<div class="header-switcher">
{if !$hide_language}
{$flag = $ctrl.active_language}
<a href="" data-focus-opener="language-switcher" class="header-language">
<img src="/common/static/images/flags/{$flag|replace:"en":"gb"}.svg" loading="lazy" width="17" height="17" class="img-responsive" alt="">
<span>
{$ctrl.active_language|replace:"cs":"cz"|upper}
</span>
</a>
{/if}
{if !$hide_currency}
<a href="" data-focus-opener="currency-switcher" class="header-currency">
<span>
{$ctrl.active_currency|replace:"Kč":"CZK"}
</span>
</a>
{/if}
</div>