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,13 @@
{% extends "base.html" %}
{% block title %}{{ category if category else tag if tag else "" |capitalize }} - {{SITENAME}}{% endblock title %}
{% block navclass %}active{%endblock%}
{% block content %}
<section id="content" class="content">
{% if category %}
{% with key='category', values=[category], title=category %}{% include "category-index.html" %}{% endwith %}
{% elif tag %}
{% include "tag-index.html" %}
{% endif %}
</section>
{% endblock content %}