forked from github/pelican
Add a way to specify the locale in the settings, and the date formating as well. Fixes #61.
11 lines
254 B
HTML
11 lines
254 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Archives for {{ SITENAME }}</h2>
|
|
|
|
<dl>
|
|
{% for article in dates %}
|
|
<dt>{{ article.locale_date }}</dt>
|
|
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
|
|
{% endfor %}
|
|
</dl>
|
|
{% endblock %}
|