2024-05-06 23:43:57 +08:00

17 lines
703 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "global/navbar.njk" %}
{% block navbarLinks %}
{% set shrineHomeUrl %}/shrines/asummersend/{% endset %}
{% set navPages = collections.all | eleventyNavigation("A Summers End Shrine") %}
{% set currentUrl %}{{ page.url }}{% endset %}
<li>
<a {% if currentUrl === shrineHomeUrl %}aria-current="page"{% endif %} href="{{ shrineHomeUrl }}">Shrine Home</a>
</li>
{%- for entry in navPages %}
<li>
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
</li>
{%- endfor %}
<li><a href="/shrines/">Shrine Index</a></li>
<li><a href="/">Main Site</a></li>
{% endblock %}