You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.6 KiB
38 lines
1.6 KiB
{# SPDX-License-Identifier: EUPL-1.2 #}
|
|
|
|
<!-- Masthead-->
|
|
<header role="banner" id="header" class="site-header">
|
|
|
|
<!-- Navigation-->
|
|
<div class="navbar sticky shadow inside flex lg:pl-36">
|
|
|
|
<!-- Masthead Logo-->
|
|
<div class="site-logo flex align-items-center py-24 mx-36">
|
|
<a href="{{ "index"|link }}">
|
|
<img height="50" width="200" src="{{ pages["header"].meta.logo|url }}" alt="" />
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Nav bar-->
|
|
<nav role="navigation" class="menu flex" aria-label="{{ index.header.Browsing_menu }}">
|
|
<button type="button" class="burger-button float-right" aria-expanded="false" aria-label="Afficher ou masquer la navigation" aria-controls="main-navigation" >
|
|
<span class="open">Menu</span>
|
|
<span class="close none">Close</span>
|
|
</button>
|
|
<ul id="main-navigation" class="nav-menu flex flex-wrap text-bold">
|
|
{% for page in pages(depthOffset=-1) %}
|
|
{% if page.title and not page.hidden %}
|
|
<li class="nav-item">
|
|
<a href="{{ page.url }}" {% if page.id == current_page.id %} class="selected"{% endif %}>{{ page.title }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<!-- Github Repo-->
|
|
<div class="holder-panel tablet-hidden">
|
|
<div class="holder-contact bg-glaz text-bold"><a class="btn" href="">{{ pages["header"].meta.iconGit_txt }}</a><i class="icon icon-{{ pages["header"].meta.iconGit }} color-white"></i></div>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|