2019-09-28 19:42:54 +02:00
|
|
|
{#-
|
|
|
|
This file was automatically generated - do not edit
|
|
|
|
-#}
|
2019-06-15 15:16:14 +02:00
|
|
|
<header class="md-header" data-md-component="header">
|
2020-03-18 17:28:26 +01:00
|
|
|
<nav class="md-header-nav md-grid" aria-label="{{ lang.t('header.title') }}">
|
|
|
|
<a href="{{ config.site_url | default(nav.homepage.url, true) | url }}" title="{{ config.site_name }}" class="md-header-nav__button md-logo" aria-label="{{ config.site_name }}">
|
2020-03-26 15:38:50 +01:00
|
|
|
{% include "partials/logo.html" %}
|
2020-02-24 18:07:50 +01:00
|
|
|
</a>
|
2020-02-27 11:37:02 +01:00
|
|
|
<label class="md-header-nav__button md-icon" for="__drawer">
|
|
|
|
{% include ".icons/material/menu" ~ ".svg" %}
|
2020-02-24 18:07:50 +01:00
|
|
|
</label>
|
|
|
|
<div class="md-header-nav__title" data-md-component="header-title">
|
2020-03-25 17:13:48 +01:00
|
|
|
{% if config.site_name == page.title %}
|
|
|
|
<div class="md-header-nav__ellipsis md-ellipsis">
|
2020-02-24 18:07:50 +01:00
|
|
|
{{ config.site_name }}
|
2020-03-25 17:13:48 +01:00
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="md-header-nav__ellipsis">
|
|
|
|
<span class="md-header-nav__topic md-ellipsis">
|
2019-06-15 15:16:14 +02:00
|
|
|
{{ config.site_name }}
|
2020-02-24 18:07:50 +01:00
|
|
|
</span>
|
2020-03-25 17:13:48 +01:00
|
|
|
<span class="md-header-nav__topic md-ellipsis">
|
2020-02-24 18:07:50 +01:00
|
|
|
{% if page and page.meta and page.meta.title %}
|
|
|
|
{{ page.meta.title }}
|
|
|
|
{% else %}
|
|
|
|
{{ page.title }}
|
|
|
|
{% endif %}
|
|
|
|
</span>
|
2020-03-25 17:13:48 +01:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-06-15 15:16:14 +02:00
|
|
|
</div>
|
2020-02-24 18:07:50 +01:00
|
|
|
{% if "search" in config["plugins"] %}
|
2020-02-27 11:37:02 +01:00
|
|
|
<label class="md-header-nav__button md-icon" for="__search">
|
2020-02-24 18:07:50 +01:00
|
|
|
{% include ".icons/material/magnify.svg" %}
|
|
|
|
</label>
|
|
|
|
{% include "partials/search.html" %}
|
|
|
|
{% endif %}
|
|
|
|
{% if config.repo_url %}
|
|
|
|
<div class="md-header-nav__source">
|
|
|
|
{% include "partials/source.html" %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-06-15 15:16:14 +02:00
|
|
|
</nav>
|
|
|
|
</header>
|