mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 18:00:00 +00:00
17 lines
437 B
Plaintext
17 lines
437 B
Plaintext
<section>
|
|
<nav class="" aria-label="Definitions">
|
|
<ol class="auto-grid list">
|
|
{% for section in collections.tableOfContent %}
|
|
<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>
|