group the archives by year

This commit is contained in:
Alexis Métaireau 2012-12-18 12:27:11 +01:00
parent 5e8dc92256
commit 8960ec19d1
2 changed files with 17 additions and 8 deletions

View file

@ -51,12 +51,17 @@ hr { border: 2px solid #EEEEEE; }
/* Anchors */ /* Anchors */
a {outline: 0;} a {outline: 0;}
a img {border: 0px; text-decoration: none;} a img {border: 0px; text-decoration: none;}
a:link, a:visited { .body a:link, .body a:visited {
color: #C74350; border-radius: 5px 5px 5px 5px;
padding: 0px 5px;
background-color: rgb(234, 234, 234);
color: rgb(0, 0, 0);
text-decoration: none;
} }
.entry-content a:hover, .entry-content a:active { .body a:hover, .body a:active {
color: #000; color: #fff;
background-color: #000;
} }
h1 a:link, h1 a:visited { font-size: 1.2em; text-decoration: none; color: #000;, z-index: 10;} h1 a:link, h1 a:visited { font-size: 1.2em; text-decoration: none; color: #000;, z-index: 10;}

View file

@ -1,12 +1,16 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<section id="content" class="body"> <section id="content" class="body">
<h1>Archives for {{ SITENAME }}</h1> <h1>Some archives for this blog</h1>
<dl> <dl>
{% for article in dates %} {% for year in articles|groupby('date.year') %}
<dt>{{ article.locale_date }}</dt> <dt>{{ year.grouper }}</dt>
<dd><a href="{{ article.url }}">{{ article.title }}</a></dd> <dd><ul>
{% for article in year.list %}
<li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul></dd>
{% endfor %} {% endfor %}
</dl> </dl>
</section> </section>