Files
spoonfairies/_includes/header.njk
T

15 lines
478 B
Plaintext
Raw Normal View History

2026-09-23 22:48:26 +02:00
<header>
2026-09-23 16:25:59 -07:00
<a href="/" class="home-link" title="home page">
<img src="/logo.jpg" alt="the Spoonfairies logo, showing a spoon with fairy wings">
<h2>{{ metadata.title }}</h2>
</a>
<nav aria-label="main navigation">
<ul class="nav">
{%- for entry in collections.all | eleventyNavigation %}
<li class="nav-item"><a href="{{ entry.url }}"{% if entry.url == page.url %} aria-current="page"{% endif %}>{{ entry.title }}</a></li>
{%- endfor %}
</ul>
2026-09-23 22:48:26 +02:00
</nav>
</header>