2019-07-22 04:23:55 +02:00
|
|
|
<!--
|
|
|
|
Copyright (c) 2016-2019 Martin Donath <martin.donath@squidfunk.com>
|
|
|
|
|
|
|
|
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-10-10 18:03:56 +02:00
|
|
|
<header class="md-header" data-md-component="header">
|
2019-07-22 04:23:55 +02:00
|
|
|
|
|
|
|
<!-- Top-level navigation -->
|
2017-10-10 18:03:56 +02:00
|
|
|
<nav class="md-header-nav md-grid">
|
|
|
|
<div class="md-flex">
|
2019-07-22 04:23:55 +02:00
|
|
|
|
|
|
|
<!-- Link to home -->
|
2017-10-10 18:03:56 +02:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2019-07-22 04:23:55 +02:00
|
|
|
<a href="{{ config.site_url | default(nav.homepage.url, true) | url }}"
|
|
|
|
title="{{ config.site_name }}"
|
|
|
|
class="md-header-nav__button md-logo">
|
2017-12-03 15:53:43 +01:00
|
|
|
{% if config.theme.logo.icon %}
|
2019-07-22 04:23:55 +02:00
|
|
|
<i class="md-icon">{{ config.theme.logo.icon }}</i>
|
2017-10-10 18:03:56 +02:00
|
|
|
{% else %}
|
2019-12-13 09:15:54 +01:00
|
|
|
<img src="{{ config.theme.logo | url }}" width="128" height="24" />
|
2017-10-10 18:03:56 +02:00
|
|
|
{% endif %}
|
|
|
|
</a>
|
|
|
|
</div>
|
2019-07-22 04:23:55 +02:00
|
|
|
|
|
|
|
<!-- Button to toggle drawer -->
|
2017-10-10 18:03:56 +02:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2019-07-22 04:23:55 +02:00
|
|
|
<label class="md-icon md-icon--menu md-header-nav__button"
|
|
|
|
for="__drawer"></label>
|
2017-10-10 18:03:56 +02:00
|
|
|
</div>
|
2019-07-22 04:23:55 +02:00
|
|
|
|
|
|
|
<!-- Header title -->
|
2017-10-10 18:03:56 +02:00
|
|
|
<div class="md-flex__cell md-flex__cell--stretch">
|
2019-07-22 04:23:55 +02:00
|
|
|
<div class="md-flex__ellipsis md-header-nav__title"
|
|
|
|
data-md-component="title">
|
2017-12-21 07:20:45 +01:00
|
|
|
{% if config.site_name == page.title %}
|
|
|
|
{{ config.site_name }}
|
2019-07-22 04:23:55 +02:00
|
|
|
{% else %}
|
|
|
|
<span class="md-header-nav__topic">
|
|
|
|
{{ config.site_name }}
|
|
|
|
</span>
|
|
|
|
<span class="md-header-nav__topic">
|
|
|
|
{% if page and page.meta and page.meta.title %}
|
|
|
|
{{ page.meta.title }}
|
|
|
|
{% else %}
|
|
|
|
{{ page.title }}
|
|
|
|
{% endif %}
|
|
|
|
</span>
|
2017-12-21 07:20:45 +01:00
|
|
|
{% endif %}
|
2017-12-03 15:53:43 +01:00
|
|
|
</div>
|
2017-10-10 18:03:56 +02:00
|
|
|
</div>
|
2019-07-22 04:23:55 +02:00
|
|
|
|
|
|
|
<!-- Button to open search dialogue -->
|
2017-12-21 07:20:45 +01:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2019-07-22 04:23:55 +02:00
|
|
|
{% if "search" in config["plugins"] %}
|
|
|
|
<label class="md-icon md-icon--search md-header-nav__button"
|
|
|
|
for="__search"></label>
|
|
|
|
|
|
|
|
<!-- Search interface -->
|
|
|
|
{% include "partials/search.html" %}
|
|
|
|
{% endif %}
|
2017-12-21 07:20:45 +01:00
|
|
|
</div>
|
2019-07-22 04:23:55 +02:00
|
|
|
|
|
|
|
<!-- Repository containing source -->
|
|
|
|
{% if config.repo_url %}
|
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
|
|
<div class="md-header-nav__source">
|
|
|
|
{% include "partials/source.html" %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-03 15:53:43 +01:00
|
|
|
{% endif %}
|
2019-07-22 04:23:55 +02:00
|
|
|
|
2017-10-10 18:03:56 +02:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
|
|
<div class="md-header-nav__source">
|
2019-12-13 09:15:54 +01:00
|
|
|
<a href="/helios4/download" title="Go to Download" class="md-source">
|
2017-12-21 07:20:45 +01:00
|
|
|
<div class="md-source__icon" style="vertical-align:middle; display:inline-block; height:100%">
|
|
|
|
<img src="/img/sd.png" style="position:relative; left:10px;">
|
|
|
|
</div>
|
2017-10-10 18:03:56 +02:00
|
|
|
<div class="md-source__repository">
|
|
|
|
Download IMG
|
|
|
|
<ul class="md-source__facts">
|
2017-12-03 15:53:43 +01:00
|
|
|
<li class="md-source__fact">Latest build : {{ config.extra.sd_release.latest }}</li>
|
2017-10-10 18:03:56 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-22 04:23:55 +02:00
|
|
|
|
2017-10-10 18:03:56 +02:00
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</header>
|