2016-08-07 19:01:56 +03:00
|
|
|
<!--
|
2017-01-06 21:11:18 +03:00
|
|
|
Copyright (c) 2016-2017 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 -->
|
|
|
|
<header class="md-header">
|
|
|
|
|
|
|
|
<!-- 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">
|
2017-02-26 15:59:54 +03:00
|
|
|
{% if config.extra.logo %}
|
|
|
|
<a href="{{ nav.homepage.url }}" title="{{ config.site_name }}"
|
|
|
|
class="md-logo md-header-nav__button">
|
2016-12-28 17:32:26 +03:00
|
|
|
<img src="{{ base_url }}/{{ config.extra.logo }}"
|
|
|
|
width="24" height="24" />
|
2017-02-26 15:59:54 +03:00
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ nav.homepage.url }}" title="{{ config.site_name }}"
|
|
|
|
class="md-icon md-icon--home md-header-nav__button">
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
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">
|
2017-01-14 22:13:10 +03:00
|
|
|
<label class="md-icon md-icon--menu md-header-nav__button"
|
2017-01-12 01:49:36 +03:00
|
|
|
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">
|
|
|
|
<span class="md-flex__ellipsis md-header-nav__title">
|
2016-12-15 22:04:30 +03:00
|
|
|
{% block site_name %}
|
|
|
|
{% if page %}
|
|
|
|
{% for parent in page.ancestors %}
|
|
|
|
<span class="md-header-nav__parent">
|
|
|
|
{{ parent.title }}
|
|
|
|
</span>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2016-12-15 18:43:40 +03:00
|
|
|
{{ page.title | default(config.site_name, true) }}
|
|
|
|
{% endblock %}
|
2016-08-07 19:01:56 +03:00
|
|
|
</span>
|
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">
|
2016-12-15 22:04:30 +03:00
|
|
|
{% block search_box %}
|
2017-01-14 22:13:10 +03:00
|
|
|
<label class="md-icon md-icon--search md-header-nav__button"
|
2017-01-12 01:49:36 +03:00
|
|
|
for="search"></label>
|
2016-09-23 12:56:25 +03:00
|
|
|
|
2016-12-15 18:43:40 +03:00
|
|
|
<!-- Search interface -->
|
|
|
|
{% include "partials/search.html" %}
|
|
|
|
{% endblock %}
|
2016-09-11 20:58:22 +03:00
|
|
|
</div>
|
|
|
|
|
2016-09-23 18:46:16 +03:00
|
|
|
<!-- Repository containing source -->
|
2016-09-11 20:00:53 +03:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2017-01-06 21:08:09 +03:00
|
|
|
<div class="md-header-nav__source">
|
2017-01-06 21:31:56 +03:00
|
|
|
{% if config.repo_url %}
|
|
|
|
{% include "partials/source.html" %}
|
|
|
|
{% endif %}
|
2017-01-06 21:08:09 +03:00
|
|
|
</div>
|
2016-09-08 20:43:23 +03:00
|
|
|
</div>
|
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>
|