28 lines
932 B
HTML
28 lines
932 B
HTML
<nav role="navigation" data-breakpoint="my-md" id="site-navbar">
|
|
<ul>
|
|
<h2>{{ SITESUBTITLE }}</h2>
|
|
</ul>
|
|
<input type="checkbox" id="hamburger">
|
|
<label id="hamburger-label" for="hamburger" aria-label="Menu" aria-controls="main-menu-items">
|
|
≡
|
|
</label>
|
|
<ul id="main-menu-items" role="list">
|
|
{% for title, link in MENUITEMS %}
|
|
{% if output_file[-10:] == "index.html" and output_file[:-10] == link %} {# 10 characters is the length of
|
|
"index.html" #}
|
|
<li aria-current="page" role="listitem">
|
|
{% else %}
|
|
<li role="listitem">
|
|
{% endif %}
|
|
<a href="{{ SITEURL }}/{{ link }}">{{ title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
<li role="listitem">
|
|
<label id="sun-moon-label">
|
|
<input id="sun-moon" name="color-mode-toggle" role="switch" type="checkbox" value="1"
|
|
aria-label="Toggle Light or Dark Mode">
|
|
</label>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{# {% debug %} #} |