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.
|
|
|
|
-->
|
|
|
|
|
2016-09-23 12:56:25 +03:00
|
|
|
<!-- Main navigation -->
|
2017-01-28 19:56:34 +03:00
|
|
|
<nav class="md-nav md-nav--primary" data-md-level="0">
|
2017-02-26 17:06:50 +03:00
|
|
|
|
|
|
|
<!-- Site title -->
|
2016-12-28 18:20:52 +03:00
|
|
|
<label class="md-nav__title md-nav__title--site" for="drawer">
|
2017-10-20 11:12:12 +03:00
|
|
|
<span class="md-nav__button md-logo">
|
2017-09-01 11:22:50 +03:00
|
|
|
{% if config.extra.logo %}
|
|
|
|
{% if config.extra.logo.icon %}
|
|
|
|
<i class="md-icon">{{ config.extra.logo.icon }}</i>
|
|
|
|
{% else %}
|
|
|
|
<img src="{{ base_url }}/{{ config.extra.logo }}" />
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
<i class="md-icon md-icon--home"></i>
|
|
|
|
{% endif %}
|
2017-10-20 11:12:12 +03:00
|
|
|
</span>
|
2016-12-28 18:20:52 +03:00
|
|
|
{{ config.site_name }}
|
|
|
|
</label>
|
2017-02-26 17:06:50 +03:00
|
|
|
|
|
|
|
<!-- Repository containing source -->
|
2016-12-28 18:20:52 +03:00
|
|
|
{% if config.repo_url %}
|
|
|
|
<div class="md-nav__source">
|
|
|
|
{% include "partials/source.html" %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2017-02-26 17:06:50 +03:00
|
|
|
|
|
|
|
<!-- Render item list -->
|
2016-12-29 16:19:26 +03:00
|
|
|
<ul class="md-nav__list" data-md-scrollfix>
|
2016-09-23 12:56:25 +03:00
|
|
|
{% for nav_item in nav %}
|
2017-01-10 02:15:44 +03:00
|
|
|
{% set path = "nav-" + loop.index | string %}
|
2017-01-28 19:56:34 +03:00
|
|
|
{% set level = 1 %}
|
2017-01-10 02:15:44 +03:00
|
|
|
{% include "partials/nav-item.html" %}
|
2016-09-23 12:56:25 +03:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</nav>
|