2016-08-07 19:01:56 +03:00
|
|
|
<!--
|
2019-01-01 20:42:00 +03:00
|
|
|
Copyright (c) 2016-2019 Martin Donath <martin.donath@squidfunk.com>
|
2016-08-07 19:01:56 +03:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to
|
|
|
|
deal in the Software without restriction, including without limitation the
|
|
|
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
IN THE SOFTWARE.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- Application header -->
|
2017-03-03 23:57:15 +03:00
|
|
|
<header class="md-header" data-md-component="header">
|
2016-08-07 19:01:56 +03:00
|
|
|
|
|
|
|
<!-- Top-level navigation -->
|
2016-09-11 20:00:53 +03:00
|
|
|
<nav class="md-header-nav md-grid">
|
2016-08-07 19:01:56 +03:00
|
|
|
<div class="md-flex">
|
|
|
|
|
2016-09-30 14:29:45 +03:00
|
|
|
<!-- Link to home -->
|
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2019-11-26 12:03:53 +03:00
|
|
|
<a
|
|
|
|
href="{{ config.site_url | default(nav.homepage.url, true) | url }}"
|
|
|
|
title="{{ config.site_name }}"
|
2019-12-25 17:09:36 +03:00
|
|
|
aria-label="{{ config.site_name }}"
|
2019-11-26 12:03:53 +03:00
|
|
|
class="md-header-nav__button md-logo"
|
|
|
|
>
|
2019-06-15 16:16:14 +03:00
|
|
|
{% if config.theme.logo.icon %}
|
2019-06-15 16:23:03 +03:00
|
|
|
<i class="md-icon">{{ config.theme.logo.icon }}</i>
|
2019-06-15 16:16:14 +03:00
|
|
|
{% else %}
|
2019-12-25 17:14:02 +03:00
|
|
|
<img
|
|
|
|
src="{{ config.theme.logo | url }}"
|
|
|
|
width="24"
|
|
|
|
height="24"
|
|
|
|
alt="logo"
|
|
|
|
/>
|
2019-06-15 16:16:14 +03:00
|
|
|
{% endif %}
|
2017-09-01 11:22:50 +03:00
|
|
|
</a>
|
2016-09-30 14:29:45 +03:00
|
|
|
</div>
|
|
|
|
|
2016-08-07 19:01:56 +03:00
|
|
|
<!-- Button to toggle drawer -->
|
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2019-11-26 12:03:53 +03:00
|
|
|
<label
|
|
|
|
class="md-icon md-icon--menu md-header-nav__button"
|
|
|
|
for="__drawer"
|
|
|
|
></label>
|
2016-01-29 01:27:15 +03:00
|
|
|
</div>
|
|
|
|
|
2016-08-07 19:01:56 +03:00
|
|
|
<!-- Header title -->
|
2016-09-11 20:00:53 +03:00
|
|
|
<div class="md-flex__cell md-flex__cell--stretch">
|
2019-11-26 12:03:53 +03:00
|
|
|
<div
|
|
|
|
class="md-flex__ellipsis md-header-nav__title"
|
2019-12-22 19:18:20 +03:00
|
|
|
data-md-component="header-title"
|
2019-11-26 12:03:53 +03:00
|
|
|
>
|
2019-06-15 16:16:14 +03:00
|
|
|
{% if config.site_name == page.title %}
|
2019-02-09 20:02:46 +03:00
|
|
|
{{ config.site_name }}
|
2019-06-15 16:16:14 +03:00
|
|
|
{% else %}
|
2019-02-09 20:02:46 +03:00
|
|
|
<span class="md-header-nav__topic">
|
2019-06-15 16:23:03 +03:00
|
|
|
{{ config.site_name }}
|
2019-02-09 20:02:46 +03:00
|
|
|
</span>
|
|
|
|
<span class="md-header-nav__topic">
|
2019-06-15 16:16:14 +03:00
|
|
|
{% if page and page.meta and page.meta.title %}
|
2019-06-15 16:23:03 +03:00
|
|
|
{{ page.meta.title }}
|
2019-06-15 16:16:14 +03:00
|
|
|
{% else %}
|
2019-06-15 16:23:03 +03:00
|
|
|
{{ page.title }}
|
2019-06-15 16:16:14 +03:00
|
|
|
{% endif %}
|
2019-02-09 20:02:46 +03:00
|
|
|
</span>
|
2019-06-15 16:16:14 +03:00
|
|
|
{% endif %}
|
2017-11-19 18:46:01 +03:00
|
|
|
</div>
|
2016-01-29 01:27:15 +03:00
|
|
|
</div>
|
|
|
|
|
2016-09-02 01:33:45 +03:00
|
|
|
<!-- Button to open search dialogue -->
|
2016-09-23 12:56:25 +03:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2019-06-15 16:16:14 +03:00
|
|
|
{% if "search" in config["plugins"] %}
|
2019-11-26 12:03:53 +03:00
|
|
|
<label
|
|
|
|
class="md-icon md-icon--search md-header-nav__button"
|
|
|
|
for="__search"
|
|
|
|
></label>
|
2016-09-23 12:56:25 +03:00
|
|
|
|
2019-02-09 20:02:46 +03:00
|
|
|
<!-- Search interface -->
|
2019-06-15 16:16:14 +03:00
|
|
|
{% include "partials/search.html" %}
|
|
|
|
{% endif %}
|
2016-09-11 20:58:22 +03:00
|
|
|
</div>
|
|
|
|
|
2016-09-23 18:46:16 +03:00
|
|
|
<!-- Repository containing source -->
|
2019-06-15 16:16:14 +03:00
|
|
|
{% if config.repo_url %}
|
2017-06-06 18:48:39 +03:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
|
|
<div class="md-header-nav__source">
|
2019-06-15 16:16:14 +03:00
|
|
|
{% include "partials/source.html" %}
|
2017-06-06 18:48:39 +03:00
|
|
|
</div>
|
2017-02-26 17:06:50 +03:00
|
|
|
</div>
|
2019-06-15 16:16:14 +03:00
|
|
|
{% endif %}
|
2016-01-29 01:27:15 +03:00
|
|
|
</div>
|
2016-08-07 19:01:56 +03:00
|
|
|
</nav>
|
2016-09-23 12:56:25 +03:00
|
|
|
</header>
|