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