2016-08-07 18:01:56 +02:00
|
|
|
<!--
|
2018-01-13 17:31:58 +01:00
|
|
|
Copyright (c) 2016-2018 Martin Donath <martin.donath@squidfunk.com>
|
2016-08-07 18:01:56 +02: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 21:57:15 +01:00
|
|
|
<header class="md-header" data-md-component="header">
|
2016-08-07 18:01:56 +02:00
|
|
|
|
|
|
|
<!-- Top-level navigation -->
|
2016-09-11 19:00:53 +02:00
|
|
|
<nav class="md-header-nav md-grid">
|
2016-08-07 18:01:56 +02:00
|
|
|
<div class="md-flex">
|
|
|
|
|
2016-09-30 13:29:45 +02:00
|
|
|
<!-- Link to home -->
|
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2017-09-01 10:22:50 +02:00
|
|
|
<a href="{{ config.site_url | default(nav.homepage.url, true) }}"
|
|
|
|
title="{{ config.site_name }}"
|
|
|
|
class="md-header-nav__button md-logo">
|
2017-10-31 19:06:19 +01:00
|
|
|
{% if config.theme.logo.icon %}
|
|
|
|
<i class="md-icon">{{ config.theme.logo.icon }}</i>
|
2018-03-06 17:50:54 +01:00
|
|
|
{% elif config.theme.logo.startswith("http") %}
|
|
|
|
<img src="{{ config.theme.logo }}" width="24" height="24" />
|
2017-09-01 10:22:50 +02:00
|
|
|
{% else %}
|
2017-10-31 19:06:19 +01:00
|
|
|
<img src="{{ base_url }}/{{ config.theme.logo }}"
|
|
|
|
width="24" height="24" />
|
2017-09-01 10:22:50 +02:00
|
|
|
{% endif %}
|
|
|
|
</a>
|
2016-09-30 13:29:45 +02:00
|
|
|
</div>
|
|
|
|
|
2016-08-07 18:01:56 +02:00
|
|
|
<!-- Button to toggle drawer -->
|
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2017-01-14 20:13:10 +01:00
|
|
|
<label class="md-icon md-icon--menu md-header-nav__button"
|
2017-01-11 23:49:36 +01:00
|
|
|
for="drawer"></label>
|
2016-01-28 23:27:15 +01:00
|
|
|
</div>
|
|
|
|
|
2016-08-07 18:01:56 +02:00
|
|
|
<!-- Header title -->
|
2016-09-11 19:00:53 +02:00
|
|
|
<div class="md-flex__cell md-flex__cell--stretch">
|
2017-11-19 16:46:01 +01:00
|
|
|
<div class="md-flex__ellipsis md-header-nav__title"
|
|
|
|
data-md-component="title">
|
2016-12-15 20:04:30 +01:00
|
|
|
{% block site_name %}
|
2017-11-19 16:46:01 +01:00
|
|
|
{% if config.site_name == page.title %}
|
|
|
|
{{ config.site_name }}
|
|
|
|
{% else %}
|
|
|
|
<span class="md-header-nav__topic">
|
|
|
|
{{ config.site_name }}
|
|
|
|
</span>
|
|
|
|
<span class="md-header-nav__topic">
|
|
|
|
{{ page.title }}
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endblock %}
|
2017-11-19 16:46:01 +01:00
|
|
|
</div>
|
2016-01-28 23:27:15 +01:00
|
|
|
</div>
|
|
|
|
|
2016-09-02 00:33:45 +02:00
|
|
|
<!-- Button to open search dialogue -->
|
2016-09-23 11:56:25 +02:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2016-12-15 20:04:30 +01:00
|
|
|
{% block search_box %}
|
2017-10-31 19:06:19 +01:00
|
|
|
{% if "search" in config["plugins"] %}
|
|
|
|
<label class="md-icon md-icon--search md-header-nav__button"
|
|
|
|
for="search"></label>
|
2016-09-23 11:56:25 +02:00
|
|
|
|
2017-10-31 19:06:19 +01:00
|
|
|
<!-- Search interface -->
|
|
|
|
{% include "partials/search.html" %}
|
|
|
|
{% endif %}
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endblock %}
|
2016-09-11 19:58:22 +02:00
|
|
|
</div>
|
|
|
|
|
2016-09-23 17:46:16 +02:00
|
|
|
<!-- Repository containing source -->
|
2017-06-06 17:48:39 +02:00
|
|
|
{% if config.repo_url %}
|
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
|
|
<div class="md-header-nav__source">
|
2017-02-26 15:06:50 +01:00
|
|
|
{% include "partials/source.html" %}
|
2017-06-06 17:48:39 +02:00
|
|
|
</div>
|
2017-02-26 15:06:50 +01:00
|
|
|
</div>
|
2017-06-06 17:48:39 +02:00
|
|
|
{% endif %}
|
2016-01-28 23:27:15 +01:00
|
|
|
</div>
|
2016-08-07 18:01:56 +02:00
|
|
|
</nav>
|
2016-09-23 11:56:25 +02:00
|
|
|
</header>
|