11 lines
256 B
Plaintext
11 lines
256 B
Plaintext
<nav>
|
|
<ul>
|
|
{% for item in collections.subpages %}
|
|
{% if item.data.excludeFromNav != true %}
|
|
<li>
|
|
<a href="#{{ item.data.title | slug }}">{{ item.data.title }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</nav> |