big ol copy

This commit is contained in:
2026-09-23 16:25:59 -07:00
parent 210ad9a5fd
commit af82782ee0
36 changed files with 1209 additions and 30 deletions
+11 -1
View File
@@ -1,4 +1,14 @@
<header>
<nav>
<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>
</nav>
</header>