All checks were successful
Deploy to Hostinger / Build and Push (push) Successful in 43s
12 lines
377 B
HTML
12 lines
377 B
HTML
{% extends "global/navbar.html" %}
|
||
{% set shrineHomeUrl = "/shrines/asummersend/" %}
|
||
|
||
{% block navbarLinks %}
|
||
{% set navPages = collections.all | eleventyNavigation("A Summer’s 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 %}
|