mkdocs-material/material/nav.html

32 lines
857 B
HTML
Raw Permalink Normal View History

2016-01-29 01:27:15 +03:00
{% if nav_item.children %}
<li>
<span class="section">{{ nav_item.title }}</span>
<ul>
{% for nav_item in nav_item.children %}
{% include "nav.html" %}
2016-01-29 01:27:15 +03:00
{% endfor %}
</ul>
</li>
{% else %}
<li>
2016-02-04 17:03:20 +03:00
<a class="{% if nav_item.active %}current{% endif %}" title="{{ nav_item.title }}" href="{{ nav_item.url }}">
2016-01-29 01:27:15 +03:00
{{ nav_item.title }}
</a>
{% if nav_item == current_page %}
{% if h1 %}
{% set toc = (toc | first).children %}
{% endif %}
{% if toc and (toc | first) %}
<ul>
{% for toc_item in toc %}
<li class="anchor">
<a title="{{ toc_item.title }}" href="{{ toc_item.url }}">
{{ toc_item.title }}
</a>
</li>
{% endfor %}
</ul>
{% endif %}
2016-01-29 01:27:15 +03:00
{% endif %}
</li>
{% endif %}