Files
pelican-themes/tuxlite_tbs/templates/archives.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

16 lines
462 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }} <small>[archive]</small>{% endblock %}
{% block content %}
{% for year, date_year in dates|groupby( 'date.year' ) %}
<h2>{{ year }}</h2>
{% for month, articles in date_year|groupby( 'date.month' ) %}
<h3>{{ articles[ 0 ].date.strftime( '%B' ) }}</h3>
<ul>
{% for article in articles %}
<li><a href="{{ article.url }}">{{ article.title }}</li>
{% endfor %}
</ul>
{% endfor %}
{% endfor %}
{% endblock %}