blob: cb5efdc77d5017c33bdffc4527b63080deb4bac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% macro toc(page) %}
<nav class="toc">
<ul>
{% for h in page.toc %}
<li><a href="{{ h.permalink }}">{{ h.title }}</a></li>
{% if h.children %}
<ul>
{% for c in h.children %}
<li><a href="{{ c.permalink }}">{{ c.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</ul>
</nav>
{% endmacro %}
|