Files
leecat.art/_includes/header.njk

22 lines
594 B
Plaintext
Raw Normal View History

<header>
2026-02-20 12:23:36 -08:00
<a href="#main" id="skip" title="skip to main content">
<i class="fa-solid fa-forward" aria-hidden="true"></i> skip
</a>
<nav aria-label="main navigation">
<ul>
{% for entry in collections.all | eleventyNavigation %}
<li>
<a href="{{ entry.url }}" title="{{ entry.data.label }}"
2026-02-20 11:57:19 -08:00
{% if entry.url == page.url %}aria-current="page"{% endif %}>
<i class="{{ entry.data.icon }}" aria-hidden="true"></i>
<span class="menu-text">{{ entry.title }}</span>
</a>
</li>
{% endfor %}
</ul>
</nav>
</header>