blob: 26396bbd7cf2fed4c6f07dfebcbe0330a715f686 (
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
|
{% extends 'base.html' %}
{% block title %} {{ SITENAME }} - Categories {% endblock %}
{% block container %}
<section id="content">
<header class="header">
<h2 class="blogpost-title">Categories</h2>
</header>
<dl>
{% for category, articles in categories %}
<dd>
<a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a>({{ articles|count }})
</dd>
{% endfor %}
</dl>
</section>
<br/><br/><br/>
{% endblock %}
{% block footer %}
{% include '_includes/footer.html' %}
{% endblock %}
|