aboutsummaryrefslogtreecommitdiffstats
path: root/coding-now/templates/category.html
blob: e5e601ad915fdb40dd9bc18122fadf4cf84263cf (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|sort %}
                <dd>
                    <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
                </dd>
            {% endfor %}
        </dl>
    </section>
{% endblock %}

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