mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
68 lines
2.4 KiB
HTML
68 lines
2.4 KiB
HTML
{#-
|
||
This file was automatically generated - do not edit
|
||
-#}
|
||
{% set features = config.theme.features or [] %}
|
||
{% set class = "md-nav__item" %}
|
||
{% if nav_item.active %}
|
||
{% set class = class ~ " md-nav__item--active" %}
|
||
{% endif %}
|
||
{% if nav_item.children %}
|
||
{% if "navigation.sections" in features and level == 1 + (
|
||
"navigation.tabs" in features
|
||
) %}
|
||
{% set class = class ~ " md-nav__item--section" %}
|
||
{% endif %}
|
||
<li class="{{ class }} md-nav__item--nested">
|
||
{% set checked = "checked" if nav_item.active %}
|
||
{% if "navigation.expand" in features and not checked %}
|
||
<input class="md-nav__toggle md-toggle" data-md-toggle="{{ path }}" data-md-state="indeterminate" type="checkbox" id="{{ path }}" checked>
|
||
{% else %}
|
||
<input class="md-nav__toggle md-toggle" data-md-toggle="{{ path }}" type="checkbox" id="{{ path }}" {{ checked }}>
|
||
{% endif %}
|
||
<label class="md-nav__link" for="{{ path }}">
|
||
{{ nav_item.title }}
|
||
<span class="md-nav__icon md-icon"></span>
|
||
</label>
|
||
<nav class="md-nav" aria-label="{{ nav_item.title }}" data-md-level="{{ level }}">
|
||
<label class="md-nav__title" for="{{ path }}">
|
||
<span class="md-nav__icon md-icon"></span>
|
||
{{ nav_item.title }}
|
||
</label>
|
||
<ul class="md-nav__list" data-md-scrollfix>
|
||
{% set base = path %}
|
||
{% for nav_item in nav_item.children %}
|
||
{% set path = base ~ "-" ~ loop.index %}
|
||
{% set level = level + 1 %}
|
||
{% include "partials/nav-item.html" %}
|
||
{% endfor %}
|
||
</ul>
|
||
</nav>
|
||
</li>
|
||
{% elif nav_item == page %}
|
||
<li class="{{ class }}">
|
||
{% set toc = page.toc %}
|
||
<input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc">
|
||
{% if toc | first is defined and "\x3ch1 id=" in page.content %}
|
||
{% set toc = (toc | first).children %}
|
||
{% endif %}
|
||
{% if toc | first is defined %}
|
||
<label class="md-nav__link md-nav__link--active" for="__toc">
|
||
{{ nav_item.title }}
|
||
<span class="md-nav__icon md-icon"></span>
|
||
</label>
|
||
{% endif %}
|
||
<a href="{{ nav_item.url | url }}" class="md-nav__link md-nav__link--active">
|
||
{{ nav_item.title }}
|
||
</a>
|
||
{% if toc | first is defined %}
|
||
{% include "partials/toc.html" %}
|
||
{% endif %}
|
||
</li>
|
||
{% else %}
|
||
<li class="{{ class }}">
|
||
<a href="{{ nav_item.url | url }}" class="md-nav__link">
|
||
{{ nav_item.title }}
|
||
</a>
|
||
</li>
|
||
{% endif %}
|