mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +00:00
48ebe70b99
Co-authored-by: Tatiana Mac <github@tatianamac.com>
18 lines
632 B
Plaintext
18 lines
632 B
Plaintext
<section>
|
|
<h2 id="terms-heading" class="visually-hidden">Terms</h2>
|
|
<nav class="" aria-labelledby="terms-heading">
|
|
<ol class="multi-column u-no-padding-left list">
|
|
{% for section in collections.tableOfContent %}
|
|
<li>
|
|
<h3 class="sub-headline" id="list{{loop.index}}">{{ section.title }}</h3>
|
|
<ol class="toc__list" role="list" aria-labelledby="list{{loop.index}}">
|
|
{% for definition in section.definitions %}
|
|
{% include 'components/table-of-content-item.njk' %}
|
|
{% endfor %}
|
|
</ol>
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</nav>
|
|
</section>
|