UPdate.
WrenCI / mac (push) Waiting to run
WrenCI / windows (push) Waiting to run
WrenCI / linux (push) Failing after 55s

This commit is contained in:
2026-01-26 05:12:14 +01:00
parent a59dbe1d55
commit fe2f087d9f
143 changed files with 13333 additions and 15112 deletions
@@ -0,0 +1,22 @@
{# retoor <retoor@molodetz.nl> #}
<aside class="sidebar">
<div class="sidebar-header">
<h1><a href="{{ static_prefix }}index.html">{{ site.name }}</a></h1>
<div class="version">v{{ site.version }}</div>
</div>
{% include 'includes/search_box.html' %}
<nav class="sidebar-nav" id="sidebar-nav" aria-label="Main navigation">
{% for section in nav.sections %}
<div class="section">
<span class="section-title">{{ section.title }}</span>
<ul>
{% for page in section.pages %}
{% set page_url = section.directory ~ "/" ~ page.file ~ ".html" %}
{% set is_active = current_path == page_url %}
<li><a href="{{ static_prefix }}{{ page_url }}"{% if is_active %} class="active"{% endif %}>{{ page.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</nav>
</aside>