Leilukin 74e6215d2f
All checks were successful
Deploy to Hostinger / Build and Push (push) Successful in 43s
Convert Nunjucks templates to HTML files
2025-04-24 00:58:27 +08:00

12 lines
377 B
HTML
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.html" %}
{% set shrineHomeUrl = "/shrines/asummersend/" %}
{% block navbarLinks %}
{% set navPages = collections.all | eleventyNavigation("A Summers End Shrine") %}
{%- for entry in navPages %}
<li>
<a {% if entry.url == page.url %}aria-current="page"{% endif %} href="{{ entry.url }}">{{ entry.title }}</a>
</li>
{%- endfor %}
{% endblock %}