Files
pelican-themes/bootstrap/templates/categories.html
2011-12-05 23:43:04 +01:00

10 lines
280 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 }}</li>
{% endfor %}
</ul>
{% endblock %}