All checks were successful
Deploy to Hostinger / Build and Push (push) Successful in 43s
12 lines
379 B
HTML
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 %}
|