You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
901 B
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<nav class="navbar lcv">
<div class="nav-logo">
<a href="{{ get_url(path="/", lang=lang) }}" class="nav-item white">
<img src="/navbar-icon.webp" width="50" height="43" alt="Accueil"/>
</a>
</div>
<div class="nav-start">
<a href="/" class="nav-item white">La Contre-Voie Documentation</a>
<span class="nav-separator"></span>
{% set home = get_section(path="_index.md", lang=lang) %}
{% for s in home.subsections %}
{% set subsection = get_section(path=s) %}
<a href="{{ subsection.permalink }}" class="nav-item white {% if current_path is starting_with(subsection.path) %}is-active{% endif %}"><span>{{ subsection.title }}</span></a>
{% endfor %}
</div>
<div class="nav-end">
<a href="https://lacontrevoie.fr" class="nav-item white">Retour à laccueil</a>
</div>
</nav>