Files
pelican-themes/tuxlite_tbs/templates/categories.html
Matts b543f5d157 Added tuxlite theme, which is inspired by the original bootstrap theme.
Built using twitter bootstrap v2.0, with responsive layout.
2012-01-25 21:24:32 -05:00

11 lines
281 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 %}