2016-08-07 19:01:56 +03:00
|
|
|
<!--
|
|
|
|
Copyright (c) 2016 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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- Main navigation item with nested items -->
|
2016-09-24 19:52:37 +03:00
|
|
|
{% if nav_item.children %}
|
2016-09-23 12:56:25 +03:00
|
|
|
<li class="md-nav__item md-nav__item--nested">
|
2016-08-07 19:01:56 +03:00
|
|
|
|
2016-09-23 12:56:25 +03:00
|
|
|
<!-- Active checkbox expands items contained within nested section -->
|
2016-09-24 19:52:37 +03:00
|
|
|
{% if nav_item.active %}
|
2016-12-15 17:55:40 +03:00
|
|
|
<input class="md-toggle md-nav__toggle" data-md-toggle="{{ path }}"
|
|
|
|
type="checkbox" id="{{ path }}" checked />
|
2016-08-07 19:01:56 +03:00
|
|
|
{% else %}
|
2016-12-15 17:55:40 +03:00
|
|
|
<input class="md-toggle md-nav__toggle" data-md-toggle="{{ path }}"
|
|
|
|
type="checkbox" id="{{ path }}" />
|
2016-08-07 19:01:56 +03:00
|
|
|
{% endif %}
|
|
|
|
|
2016-09-23 12:56:25 +03:00
|
|
|
<!-- Expand active pages -->
|
2016-09-24 19:52:37 +03:00
|
|
|
<label class="md-nav__link" for="{{ path }}">
|
|
|
|
{{ nav_item.title }}
|
|
|
|
</label>
|
2016-12-28 13:49:57 +03:00
|
|
|
<nav class="md-nav" data-md-component="collapsible">
|
2016-12-28 18:20:52 +03:00
|
|
|
<label class="md-nav__title" for="{{ path }}">
|
|
|
|
{{ nav_item.title}}
|
|
|
|
</label>
|
2016-12-29 16:19:26 +03:00
|
|
|
<ul class="md-nav__list" data-md-scrollfix>
|
2016-09-23 12:56:25 +03:00
|
|
|
|
2016-09-24 19:52:37 +03:00
|
|
|
<!-- Render nested item list -->
|
|
|
|
{% for nav_item in nav_item.children %}
|
|
|
|
{% set temp = path %}
|
|
|
|
{% set path = path + "-" + loop.index | string %}
|
|
|
|
{% include "partials/nav-item.html" %}
|
|
|
|
{% set path = temp %}
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</li>
|
2016-09-23 12:56:25 +03:00
|
|
|
|
2016-12-15 18:43:40 +03:00
|
|
|
<!-- Main navigation item with nested items -->
|
|
|
|
{% elif nav_item == page %}
|
2016-09-24 19:52:37 +03:00
|
|
|
<li class="md-nav__item">
|
|
|
|
|
|
|
|
<!-- Active checkbox expands items contained within nested section -->
|
2016-12-15 17:55:40 +03:00
|
|
|
<input class="md-toggle md-nav__toggle" data-md-toggle="toc"
|
|
|
|
type="checkbox" id="toc" />
|
2016-09-24 19:52:37 +03:00
|
|
|
|
|
|
|
<!-- Expand active pages -->
|
|
|
|
<label class="md-nav__link md-nav__link--active" for="toc">
|
|
|
|
{{ nav_item.title }}
|
|
|
|
</label>
|
|
|
|
<a href="{{ nav_item.url }}" title="{{ nav_item.title }}"
|
|
|
|
class="md-nav__link md-nav__link--active">
|
|
|
|
{{ nav_item.title }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<!-- Show table of contents -->
|
|
|
|
{% include "partials/toc.html" %}
|
2016-08-07 19:01:56 +03:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<!-- Main navigation item -->
|
|
|
|
{% else %}
|
|
|
|
<li class="md-nav__item">
|
|
|
|
{% if nav_item.active %}
|
|
|
|
<a href="{{ nav_item.url }}" title="{{ nav_item.title }}"
|
|
|
|
class="md-nav__link md-nav__link--active">
|
|
|
|
{{ nav_item.title }}
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ nav_item.url }}" title="{{ nav_item.title }}"
|
|
|
|
class="md-nav__link">
|
|
|
|
{{ nav_item.title }}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</li>
|
2016-09-23 12:56:25 +03:00
|
|
|
{% endif %}
|