aboutsummaryrefslogblamecommitdiffstats
path: root/uikit/templates/articles.html
blob: 17f9e3c950783ad74ae35422573626b8a572a4ad (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                          
                             




                                                                                                                           
{% 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 %}
    <li><a class="{% if CAPITALIZE_HEADINGS %}capitalize{% endif %}" href="/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endblock heading %}
{% endblock content %}