Skip to content
Snippets Groups Projects
header.tpl 1.3 KiB
Newer Older
JosephK's avatar
JosephK committed
    <header role="banner" class="clearfix">
Olivier PEREZ's avatar
Olivier PEREZ committed
    {if count($langs)>1}
        <form method="post" action="" class="hidden-print">
Olivier PEREZ's avatar
Olivier PEREZ committed
            <div class="input-group input-group-sm pull-right col-xs-12 col-sm-2">
                <select name="lang" class="form-control" title="{__('Language selector', 'Select the language')}" >
Olivier PEREZ's avatar
Olivier PEREZ committed
                {foreach $langs as $lang_key=>$lang_value}
                    <option lang="{substr($lang_key, 0, 2)}" {if substr($lang_key, 0, 2)==$locale}selected{/if} value="{$lang_key|html}">{$lang_value|html}</option>
Olivier PEREZ's avatar
Olivier PEREZ committed
                {/foreach}
                </select>
                <span class="input-group-btn">
                    <button type="submit" class="btn btn-default btn-sm" title="{__('Language selector', 'Change the language')}">OK</button>
Olivier PEREZ's avatar
Olivier PEREZ committed
                </span>
            </div>
        </form>
    {/if}

JosephK's avatar
JosephK committed
        <h1 class="row col-xs-12 col-sm-10">
JosephK's avatar
JosephK committed
            <a href="{$SERVER_URL|html}" title="{__('Generic', 'Home')} - {$APPLICATION_NAME|html}" >
Olivier PEREZ's avatar
Olivier PEREZ committed
                <img src="{$TITLE_IMAGE|resource}" alt="{$APPLICATION_NAME|html}" class="img-responsive"/>
            </a>
        </h1>
JosephK's avatar
JosephK committed
        {if !empty($title)}<h2 class="lead col-xs-12"><i>{$title|html}</i></h2>{/if}
Olivier PEREZ's avatar
Olivier PEREZ committed
        <div class="trait col-xs-12" role="presentation"></div>
Olivier PEREZ's avatar
Olivier PEREZ committed
    </header>
JosephK's avatar
JosephK committed
    <main role="main">