view themes/tuxlite_tbs/templates/categories.html @ 64:ddd4e26ce4ad

Add a pingback page as draft
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 30 Oct 2015 02:17:23 +0100 (2015-10-30)
parents 6e2bcaecf3ec
children
line wrap: on
line source
{% extends "base.html" %}
{% block title %}{{ SITENAME }} <small>[categories]</small>{% endblock %}
{% block content %}
<ul>
{% for category, articles in categories %}
	<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</li>
{% endfor %}
</ul>

{% endblock %}