selfdefined/11ty/_includes/components/table-of-content.njk

17 lines
434 B
Plaintext
Raw Normal View History

<section>
<nav class="" aria-label="Definitions">
<ol class="auto-grid list">
{% for section in collections.definitions %}
<li>
<span class="sub-headline">{{ section.title }}</span>
<ol>
{% for definition in section.definitions %}
{% include 'components/table-of-content-item.njk' %}
{% endfor %}
</ol>
</li>
{% endfor %}
</ol>
</nav>
</section>