Iterate footer link collection to display links

This commit is contained in:
Helen Chong 2024-09-14 22:50:36 +08:00
parent d32bcb5ef1
commit 64d7b6779a
1 changed files with 11 additions and 9 deletions

View File

@ -10,16 +10,18 @@
{% if currentUrl === "/sitemap/" %}aria-current="page"{% endif %}
href="/sitemap/
">Site Map</a></li>
{%- for link in collections["footer links"] -%}
<li><a
{% if currentUrl === "/changelogs/" %}aria-current="page"{% endif %}
href="/changelogs/"
>Changelogs</a></li>
{%- for statement in collections.statements -%}
<li><a
{% if entry.url == page.url %}aria-current="page"{% endif %}
href="{{ statement.url }}"
>{{ statement.data.title }}</a></li>
{%- endfor -%}
{% if link.url == page.url %}aria-current="page"{% endif %}
href="{{ link.url }}"
>{{ link.data.title }}</a></li>
{%- endfor -%}
{%- for statement in collections.statements -%}
<li><a
{% if statement.url == page.url %}aria-current="page"{% endif %}
href="{{ statement.url }}"
>{{ statement.data.title }}</a></li>
{%- endfor -%}
</ul>
{% endblock %}