alltube/templates/inc/header.tpl

31 lines
1.3 KiB
Smarty
Raw Normal View History

2015-04-11 22:08:24 +02:00
<header>
{if isset($supportedLocales) AND count($supportedLocales) > 1}
2017-06-01 22:48:14 +02:00
<div class="locales small-font">
<button class="localesBtn small-font" title="{t}Switch language{/t}">
{if isset($locale) AND $locale->getCountry()}
2017-06-01 22:48:14 +02:00
{$locale->getCountry()->getEmoji()}
{else}
{t}Set language{/t}
2017-06-01 22:48:14 +02:00
{/if}
</button>
<ul class="supportedLocales">
{foreach $supportedLocales as $supportedLocale}
{if $supportedLocale != $locale}
<li>
<a hreflang="{$supportedLocale->getBcp47()}"
2020-05-14 00:18:39 +02:00
lang="{$supportedLocale->getBcp47()}"
href="{path_for name='locale' data=['locale'=>$supportedLocale->getIso15897()]}">
{if $supportedLocale->getCountry()}
{$supportedLocale->getCountry()->getEmoji()}
{/if}
{$supportedLocale->getFullName()|ucfirst}
</a>
</li>
2017-06-01 22:48:14 +02:00
{/if}
{/foreach}
</ul>
</div>
{/if}
2015-04-11 22:08:24 +02:00
</header>
<div class="wrapper">