2016-08-07 18:01:56 +02:00
|
|
|
<!--
|
2019-01-01 18:42:00 +01:00
|
|
|
Copyright (c) 2016-2019 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.
|
|
|
|
-->
|
|
|
|
|
2016-09-23 11:56:25 +02:00
|
|
|
<!-- Main navigation -->
|
2017-01-28 17:56:34 +01:00
|
|
|
<nav class="md-nav md-nav--primary" data-md-level="0">
|
2017-02-26 15:06:50 +01:00
|
|
|
|
|
|
|
<!-- Site title -->
|
2018-06-10 14:45:16 +02:00
|
|
|
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
2018-08-04 19:53:13 +02:00
|
|
|
<a href="{{ config.site_url | default(nav.homepage.url, true) | url }}"
|
2018-07-29 16:19:04 +02:00
|
|
|
title="{{ config.site_name }}" class="md-nav__button md-logo">
|
2019-06-15 15:16:14 +02:00
|
|
|
{% if config.theme.logo.icon %}
|
2019-05-17 21:37:21 +02:00
|
|
|
<i class="md-icon">{{- config.theme.logo.icon -}}</i>
|
2019-06-15 15:16:14 +02:00
|
|
|
{% else %}
|
2018-08-04 19:53:13 +02:00
|
|
|
<img src="{{ config.theme.logo | url }}" width="48" height="48" />
|
2019-06-15 15:16:14 +02:00
|
|
|
{% endif %}
|
2018-07-29 16:19:04 +02:00
|
|
|
</a>
|
2019-05-17 21:37:21 +02:00
|
|
|
{{- config.site_name -}}
|
2016-12-28 16:20:52 +01:00
|
|
|
</label>
|
2017-02-26 15:06:50 +01:00
|
|
|
|
|
|
|
<!-- Repository containing source -->
|
2019-06-15 15:16:14 +02:00
|
|
|
{% if config.repo_url %}
|
2016-12-28 16:20:52 +01:00
|
|
|
<div class="md-nav__source">
|
2019-06-15 15:16:14 +02:00
|
|
|
{% include "partials/source.html" %}
|
2016-12-28 16:20:52 +01:00
|
|
|
</div>
|
2019-06-15 15:16:14 +02:00
|
|
|
{% endif %}
|
2017-02-26 15:06:50 +01:00
|
|
|
|
|
|
|
<!-- Render item list -->
|
2016-12-29 14:19:26 +01:00
|
|
|
<ul class="md-nav__list" data-md-scrollfix>
|
2019-06-15 15:16:14 +02:00
|
|
|
{% for nav_item in nav %}
|
|
|
|
{% set path = "nav-" + loop.index | string %}
|
|
|
|
{% set level = 1 %}
|
|
|
|
{% include "partials/nav-item.html" %}
|
|
|
|
{% endfor %}
|
2016-09-23 11:56:25 +02:00
|
|
|
</ul>
|
|
|
|
</nav>
|