aboutsummaryrefslogtreecommitdiffstats
path: root/ops/templates/category.html
blob: fb71e3b85970250cc26ecaba186e1d5c4380ab65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% 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 %}
                <dd>
                    <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
                </dd>
            {% endfor %}
        </dl>
    </section>
{% endblock %}

{% block footer %}
    {% include '_includes/footer.html' %}
{% endblock %}