31 lines
1007 B
Twig
31 lines
1007 B
Twig
<header id="top-bar">
|
|
<div class="row fullwidth">
|
|
|
|
<section id="title-area" class="small-8 small-push-2 columns">
|
|
<h1><a href="/"><span>{{ site.title|e('html') }}</span></a></h1>
|
|
<h2>{{ site.subtitle|e('html') }}</h2>
|
|
</section>
|
|
|
|
<nav id="left-nav" class="nav small-2 small-pull-8 columns">
|
|
<div class="wrapper">
|
|
<ul class="left">
|
|
{% for page in pages.children %}
|
|
{% if page.menu != "home" and page.menu != "Catégories" %}
|
|
<li><a href="{{ page.url }}">{{ page.menu }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<nav id="right-nav" class="nav small-2 columns">
|
|
{% if config.plugins.taxonomylist.enabled %}
|
|
<div class="wrapper">
|
|
<h4><a href="/categories">Catégories</a></h4>
|
|
{% include 'partials/tagslist.html.twig' with {'base_url':"/categories/", 'taxonomy':'tag'} %}
|
|
</div>
|
|
{% endif %}
|
|
</nav>
|
|
</div>
|
|
</header>
|