blob: 2ec0eda17f3b952b1ba877b9899b6f311c147112 (
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
24
25
26
27
28
|
{% extends "base.html" %}
{% block content %}
<div class="page-container archive-container">
<div class="article-header-container">
<div class="background-image-container">
{# title with big background image #}
<div class="background-image-small">
<div class="title-container">
<h1>Categories for {{ SITENAME }}</h1>
</div>
</div>
</div>
</div>
<div class="entry-content" style="min-height:100vh">
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}
|