dnd/deadsands/deadsands-theme/templates/index.html

17 lines
557 B
HTML
Raw Normal View History

2022-07-26 17:22:04 -07:00
{% extends "base.html" %}
{% block title %}{{ category if category else tag if tag else "" |capitalize }} - {{SITENAME}}{% endblock title %}
{% block navclass %}active{%endblock%}
{% block content %}
2022-08-07 12:14:53 -07:00
{% if not self.is_dm() and category == 'dm' %}
{% else %}
2022-07-26 17:22:04 -07:00
<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>
2022-08-07 12:14:53 -07:00
{% endif %}
2022-07-26 17:22:04 -07:00
{% endblock content %}