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
379 B
HTML

{% extends "global/navbar.html" %}
{% set shrineHomeUrl = "/shrines/cassettebeasts/" %}
{% block navbarLinks %}
{% set navPages = collections.all | eleventyNavigation("Cassette Beasts 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 %}