Add the notmyidea theme + settings as an example.

This commit is contained in:
Alexis Metaireau 2010-08-18 15:10:43 +02:00
commit 59f410673f
9 changed files with 148 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
<h1>Archives for {{ BLOGNAME }}</h1>
<dl>
{% for date, articles in dates %}
{% for article in articles %}
<dt>{{ date }}</dt>
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
{% endfor %}
</dl>
{% endblock %}