2020-12-28 13:08:57 +00:00
|
|
|
{#-
|
|
|
|
This file was automatically generated - do not edit
|
|
|
|
-#}
|
|
|
|
{% set site_url = config.site_url | d(nav.homepage.url, true) | url %}
|
|
|
|
{% if not config.use_directory_urls and site_url[0] == site_url[-1] == "." %}
|
|
|
|
{% set site_url = site_url ~ "/index.html" %}
|
|
|
|
{% endif %}
|
|
|
|
<header class="md-header" data-md-component="header">
|
2021-03-01 08:35:35 +00:00
|
|
|
<nav class="md-header__inner md-grid" aria-label="{{ lang.t('header.title') }}">
|
|
|
|
<a href="{{ site_url }}" title="{{ config.site_name | e }}" class="md-header__button md-logo"
|
2020-12-28 13:08:57 +00:00
|
|
|
aria-label="{{ config.site_name }}">
|
|
|
|
{% include "partials/logo.html" %}
|
|
|
|
</a>
|
2021-03-01 08:35:35 +00:00
|
|
|
<label class="md-header__button md-icon" for="__drawer">
|
2020-12-28 13:08:57 +00:00
|
|
|
{% include ".icons/material/menu" ~ ".svg" %}
|
|
|
|
</label>
|
2021-03-01 08:35:35 +00:00
|
|
|
<div class="md-header__title" data-md-component="header-title">
|
|
|
|
<div class="md-header__ellipsis">
|
|
|
|
<div class="md-header__topic">
|
2020-12-28 13:08:57 +00:00
|
|
|
<span class="md-ellipsis">
|
|
|
|
{{ config.site_name }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2021-03-01 08:35:35 +00:00
|
|
|
<div class="md-header__topic" data-md-component="header-topic">
|
2020-12-28 13:08:57 +00:00
|
|
|
<span class="md-ellipsis">
|
|
|
|
{% if page and page.meta and page.meta.title %}
|
|
|
|
{{ page.meta.title }}
|
|
|
|
{% else %}
|
|
|
|
{{ page.title }}
|
|
|
|
{% endif %}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-01 08:35:35 +00:00
|
|
|
<div class="md-header__options">
|
|
|
|
{% if config.extra.alternate %}
|
|
|
|
<div class="md-select">
|
|
|
|
{% set icon = config.theme.icon.alternate or "material/translate" %}
|
|
|
|
<span class="md-header__button md-icon">
|
|
|
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
|
|
|
</span>
|
|
|
|
<div class="md-select__inner">
|
|
|
|
<ul class="md-select__list">
|
|
|
|
{% for alt in config.extra.alternate %}
|
|
|
|
<li class="md-select__item">
|
|
|
|
<a href="{{ alt.link | url }}" class="md-select__link">
|
|
|
|
{{ alt.name }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-12-28 13:08:57 +00:00
|
|
|
{% if "search" in config["plugins"] %}
|
2021-03-01 08:35:35 +00:00
|
|
|
<label class="md-header__button md-icon" for="__search">
|
2020-12-28 13:08:57 +00:00
|
|
|
{% include ".icons/material/magnify.svg" %}
|
|
|
|
</label>
|
|
|
|
{% include "partials/search.html" %}
|
|
|
|
{% endif %}
|
|
|
|
{% if config.repo_url %}
|
2021-03-01 08:35:35 +00:00
|
|
|
<div class="md-header__source">
|
2020-12-28 13:08:57 +00:00
|
|
|
{% include "partials/source.html" %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</nav>
|
2021-03-01 08:35:35 +00:00
|
|
|
<!-- Place this tag in your head or just before your close body tag. -->
|
|
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
|
|
|
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
|
2020-12-28 13:08:57 +00:00
|
|
|
</header>
|