initial import of deadsands website

This commit is contained in:
Greg Boyington
2022-07-26 17:22:04 -07:00
parent 50cd1981a4
commit e9570a7c02
58 changed files with 2558 additions and 0 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 %}