1
0
Fork 0
forked from github/pelican

Add a base URL to the template context, fix the notmyidea theme to be a bit more

prettier.
This commit is contained in:
Alexis Metaireau 2010-09-24 20:30:09 +01:00
commit 69c5fe3891
8 changed files with 38 additions and 26 deletions

View file

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li>{{ category }}</li>
{% endfor %}
</ul>
{% endblock %}