mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-29 06:38:54 +00:00
23 lines
No EOL
631 B
Twig
23 lines
No EOL
631 B
Twig
<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 %}
|
|
{% 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> |