33 lines
1.4 KiB
Smarty
33 lines
1.4 KiB
Smarty
{* @compiler:inline-only *}
|
|
<header class="header header-ordering">
|
|
<div class="container-fluid display-flex">
|
|
<a href="{url s=index}" title="{$dbcfg.index_title}" class="link-back">
|
|
{t}Pokračovat v nákupu{/t}
|
|
</a>
|
|
|
|
<a href="{url s=index}" title="{$dbcfg.index_title}" class="logo">
|
|
<img src="{static_url url="/templates/images/logo.svg"}" class="img-responsive" alt="{$dbcfg.index_title}">
|
|
</a>
|
|
|
|
<div class="header-icons">
|
|
{* pokud tohle odkopíruješ, smaž `ifmodule` a nech jen tu verzi, co používáš (JS nebo klasik) *}
|
|
{* košík zde není naschvál, nechceme řešit vzájemnou interakci velkého a malého košíku *}
|
|
{ifmodule "JS_SHOP"}
|
|
<div class="header-login header-icon" id="js-shop-user">
|
|
<a href="{url s=login}" class="cart-signin">
|
|
<span class="fc icons_user"></span>
|
|
</a>
|
|
</div>
|
|
{elsemodule}
|
|
<div class="header-login header-icon {if !$ctrl.logged}cart-signin{/if}">
|
|
<a href="{if !$ctrl.logged}{url s=login}{else}{url s=account}{/if}">
|
|
<span class="fc icons_user"></span>
|
|
<span>{if !$ctrl.logged}{t}Přihlásit{/t}{else}{t}Můj účet{/t}{/if}</span>
|
|
</a>
|
|
</div>
|
|
{insert_cart_info hide_box=true}
|
|
{/ifmodule}
|
|
</div>
|
|
</div>
|
|
</header>
|