2014-12-12 13:43:43 +01:00
|
|
|
<header role="banner">
|
|
|
|
{if count($langs)>1}
|
2015-01-04 02:00:02 +01:00
|
|
|
<form method="post" action="" class="hidden-print">
|
2014-12-12 13:43:43 +01:00
|
|
|
<div class="input-group input-group-sm pull-right col-md-2 col-xs-4">
|
2015-03-30 15:19:56 +02:00
|
|
|
<select name="lang" class="form-control" title="{__('Language selector', 'Select the language')}" >
|
2014-12-12 13:43:43 +01:00
|
|
|
{foreach $langs as $lang_key=>$lang_value}
|
2015-01-20 00:05:43 +01:00
|
|
|
<option lang="{substr($lang_key, 0, 2)}" {if substr($lang_key, 0, 2)==$html_lang}selected{/if} value="{$lang_key|html}">{$lang_value|html}</option>
|
2014-12-12 13:43:43 +01:00
|
|
|
{/foreach}
|
|
|
|
</select>
|
|
|
|
<span class="input-group-btn">
|
2015-03-30 15:19:56 +02:00
|
|
|
<button type="submit" class="btn btn-default btn-sm" title="{__('Language selector', 'Change the language')}">OK</button>
|
2014-12-12 13:43:43 +01:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{/if}
|
|
|
|
|
2015-03-30 15:19:56 +02:00
|
|
|
<h1><a href="{$SERVER_URL|html}" title="{__('Generic', 'Home')} - {$APPLICATION_NAME|html}"><img src="{$TITLE_IMAGE|resource}" alt="{$APPLICATION_NAME|html}"/></a></h1>
|
2015-01-11 14:59:25 +01:00
|
|
|
{if !empty($title)}<h2 class="lead"><i>{$title|html}</i></h2>{/if}
|
2014-12-12 13:43:43 +01:00
|
|
|
<hr class="trait" role="presentation" />
|
|
|
|
</header>
|
|
|
|
<main role="main">
|