grav-theme-future2021/templates/partials/header.html.twig
2023-02-06 21:47:04 +01:00

25 lines
755 B
Twig
Executable file

<header id="header">
<h1 class="logo">
<a href="{{ home_url }}">{{ site.title }}</a>
</h1>
<nav class="dropdown">
{% block header_navigation %}
{% include 'partials/navigation.html.twig' %}
{% endblock %}
</nav>
<nav class="main">
{% block header_extra %}
<ul>
{% if config.plugins.langswitcher.enabled and system.languages.supported is not null %}
{% include 'partials/langswitcher.html.twig' %}
{% endif %}
{% if config.plugins.simplesearch.enabled %}
{% include 'partials/simplesearch_searchbox.html.twig' %}
{% endif %}
<li class="menu">
<a class="fa-bars" href="#menu">Menu</a>
</li>
</ul>
{% endblock %}
</nav>
</header>