1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
{% extends "base.html" %}
{% block head %}
<style type="text/css">
ul.archive {
list-style-type: none;
margin: 0;
padding: 0;
}
ul.archive li {
margin-bottom: 1em;
}
ul.archive .title {
font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
font-size: 14pt;
}
</style>
{% end %}
{% block body %}
<ul class="archive">
{% for entry in entries %}
<li>
<div class="title"><a href="/entry/{{ entry.slug }}">{{ entry.title }}</a></div>
<div class="date">{{ locale.format_date(entry.published, full_format=True, shorter=True) }}</div>
</li>
{% end %}
</ul>
{% end %}
|