aboutsummaryrefslogtreecommitdiffstats
path: root/uikit/templates/articles.html
blob: 845439541ade014f7690f3727492d5eb7e6743d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "index.html" %}
{% import 'html_macros.html' as html_macros %}

{% block head %}
{{ super() }}
{% endblock head %}
{% block titlename %}{{'all articles'|capitalize}}{% endblock titlename %}

{% block content %}
{% block heading %}

<h1>{{'all the articles'|capitalize}}</h1>

<ul>
{% for article in articles|sort %}
    <li><a class="{% if CAPITALIZE_HEADINGS %}capitalize{% endif %}" href="/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endblock heading %}
{% endblock content %}