work.suroh.tk/_includes/nav.njk

31 lines
799 B
Plaintext

<nav id="primary">
<span data-link="~"><~</span>
{% for c in site.categories %}
<span data-link="{{c}}">█</span>
{% endfor %}
</nav>
<span id="audioToggle" class="active"></span>
<nav id="sub">
{% for c in site.categories %}
<ul id="{{c}}">
{% for p in collections.pages %}
{% if (p.data.category == c) %}
<li>
<a href="{{p.url}}">{{p.data.title | makeLowercase or p.fileSlug | makeLowercase}}</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% endfor %}
</nav>
<section style="position: fixed; bottom: 0; left: 0; margin: 0; padding: 0; width: 100vw; height: 0px; overflow: visible; z-index: 100;mix-blend-mode: difference;">
<h1 id="menuItem" class=""></h1>
</section>
<nav id="toTop">
<span>top</span>
</nav>