prefix urls with '{{ SITEURL }}/' so that urls won't break when #330 is merged

This commit is contained in:
Bruno Binet 2012-05-07 23:07:44 +02:00
commit f12a297466
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ article.url }}">{{ article.title }}</a></dd>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}