blog/templates/macros/post.html
Michael Zhang dfd6b90ff0
...
2018-10-19 11:10:28 -05:00

13 lines
352 B
HTML

{% macro render_toc(toc) %}
<ul>
{% for item in toc %}
<li>
<a href="{{ item.permalink | safe }}">{{ item.title }}</a>
{% if item.children %}
{{ post::render_toc(toc=item.children) }}
{% endif %}
</li>
{% endfor %}
</ul>
{% endmacro %}