25 lines
743 B
Smarty
25 lines
743 B
Smarty
{if $menu}
|
|
<div class="footer-flags closed">
|
|
<ul>
|
|
{foreach $menu as $item}
|
|
{if $item.data.flag}
|
|
<li {if $item@first}class="active"{/if}>
|
|
<a href="{$item.url}" {if $item.target != ''}target="{$item.target}"{/if}>
|
|
<img src="/common/static/images/flags/{$item.data.flag}.svg?v1" alt="{$item.title}" width="30" height="20">
|
|
{$item.title}
|
|
</a>
|
|
</li>
|
|
{/if}
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
|
|
<script>
|
|
wpj.onReady.push(function() {
|
|
$('.footer-flags .active').click(function() {
|
|
$('.footer-flags').toggleClass('closed');
|
|
});
|
|
});
|
|
</script>
|
|
{/if}
|