collapsing dir structure

This commit is contained in:
evilchili
2022-07-30 15:00:24 -07:00
parent 2796d56426
commit fd6131ad5a
99 changed files with 3394 additions and 33 deletions
@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block title %} {{ category }} - {{ SITENAME }}{% endblock %}
{% block archclass %} class="active"{%endblock%}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}