Files
pelican-themes/bootstrap/templates/categories.html
2012-03-20 13:45:12 +01:00

10 lines
284 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }} <small>[categories]</small>{% endblock %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}