rfcs/templates/partials/rfctoc.html

9 lines
249 B
HTML

{% macro new(headings) %}
<ol>
{%- for h in headings -%}
<li><a href="{{ h.permalink }}">{{ h.title }}</a></li>
{% if h.children %}{{ rfctoc::new(headings=h.children) }}{% endif %}
{%- endfor -%}
</ol>
{% endmacro %}