2015-04-11 20:08:24 +00:00
|
|
|
<header>
|
2017-06-01 21:45:35 +00:00
|
|
|
{if isset($supportedLocales) AND count($supportedLocales) > 1}
|
2017-06-01 20:48:14 +00:00
|
|
|
<div class="locales small-font">
|
|
|
|
<button class="localesBtn small-font" title="{t}Switch language{/t}">
|
2019-11-27 22:15:49 +00:00
|
|
|
{if isset($locale) AND $locale->getCountry()}
|
2017-06-01 20:48:14 +00:00
|
|
|
{$locale->getCountry()->getEmoji()}
|
|
|
|
{else}
|
|
|
|
Set language
|
|
|
|
{/if}
|
|
|
|
</button>
|
|
|
|
<ul class="supportedLocales">
|
|
|
|
{foreach $supportedLocales as $supportedLocale}
|
|
|
|
{if $supportedLocale != $locale}
|
2019-11-27 22:15:49 +00:00
|
|
|
<li>
|
|
|
|
<a hreflang="{$supportedLocale->getBcp47()}"
|
|
|
|
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 20:48:14 +00:00
|
|
|
{/if}
|
|
|
|
{/foreach}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{/if}
|
2015-04-11 20:08:24 +00:00
|
|
|
</header>
|
|
|
|
<div class="wrapper">
|