forked from github/pelican
Add a way to specify the locale in the settings, and the date formating as well. Fixes #61.
10 lines
446 B
HTML
10 lines
446 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1>
|
|
{% if SITESUBTITLE %} <div class="info">{{ SITESUBTITLE }}</div> {% endif %}
|
|
{% for article in articles %}
|
|
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
|
|
<p class="published">{{ article.locale_date }}</p>
|
|
{{ article.summary }}
|
|
{% endfor %}
|
|
{% endblock %}
|