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 %}
|
2016-02-05 17:35:15 +03:00
|
|
|
{% 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 %}
|
|
|
|
<ul>
|
|
|
|
{% for toc_item in toc %}
|
2016-02-05 17:35:15 +03:00
|
|
|
{% if h1 %}
|
|
|
|
{% for toc_item in toc_item.children %}
|
|
|
|
<li class="anchor">
|
|
|
|
<a title="{{ toc_item.title }}" href="{{ toc_item.url }}">
|
|
|
|
{{ toc_item.title }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
2016-01-29 01:27:15 +03:00
|
|
|
<li class="anchor">
|
2016-02-05 17:35:15 +03:00
|
|
|
<a title="{{ toc_item.title }}" href="{{ toc_item.url }}">
|
2016-01-29 01:27:15 +03:00
|
|
|
{{ toc_item.title }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2016-02-05 17:35:15 +03:00
|
|
|
{% endif %}
|
2016-01-29 01:27:15 +03:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
</li>
|
|
|
|
{% endif %}
|