blob: e5e601ad915fdb40dd9bc18122fadf4cf84263cf (
plain) (
tree)
|
|
{% extends 'base.html' %}
{% block title %} {{ SITENAME }} - {{ category }} {% endblock %}
{% block container %}
<section id="content">
<header class="header">
<h2>{{ category }}</h2>
</header>
<dl>
<h3>{{ category }}</h3>
{% for article in articles|sort %}
<dd>
<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
</dd>
{% endfor %}
</dl>
</section>
{% endblock %}
{% block footer %}
{% include '_includes/footer.html' %}
{% endblock %}
|