Last active
February 6, 2025 15:44
-
-
Save ryangittings/c916afab2f87fcda6c211019e3ca4763 to your computer and use it in GitHub Desktop.
<menu-toggle>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<menu-toggle class="menu-toggle"> | |
<button class="[ menu-toggle__button ] [ lg:hidden ]" aria-label="Toggle menu"><span></span></button> | |
<nav class="hidden lg:block" aria-label="Primary navigation"> | |
<ul class="flex items-center gap-s flex-col lg:flex-row" role="list"> | |
{%- for entry in collections.all | eleventyNavigation %} | |
{% if entry.title %} | |
<li><a href="{{ entry.url | url }}"{% if entry.url == page.url or entry.url in page.url and entry.url != '/' %} data-active{% endif %}>{{ entry.title }}</a></li> | |
{% endif %} | |
{%- endfor %} | |
</ul> | |
</nav> | |
</menu-toggle> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment