blob: 48ffca91639c14627bce8fd2d52d45ec25a6866c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "base.html" %}
{% block description %}All posts which refer to category {{ category }}{% endblock %}
{% block title %}{{ category }} — {{ SITENAME }}{% endblock %}
{% block content %}
<h1>Category <small>{{category}}</small></h1>
<table class="table">
<tbody>
{% for article in articles %}
<tr>
<td>{{ article.date.strftime("%d %b %Y") }}</td>
<td><a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
|