diff options
-rw-r--r-- | Just-Read/templates/archives.html | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Just-Read/templates/archives.html b/Just-Read/templates/archives.html index 355fe6f..91c1c54 100644 --- a/Just-Read/templates/archives.html +++ b/Just-Read/templates/archives.html @@ -1,21 +1,18 @@ {% extends "base.html" %} -{% block title %}{{ SITENAME }} <small>[archive]</small>{% endblock %} +{% block title %}{{ SITENAME }}{% endblock %} {% block content %} <div role="main" class="content clearfix"> <div class="wrapper main"> {% for year, date_year in dates|groupby( 'date.year' ) %} - <h2>{{ year }}</h2> - {% for month, articles in date_year|groupby( 'date.month' ) %} - <h3>{{ articles[ 0 ].date.strftime( '%B' ) }}</h3> + <h2>{{ year }}</h2> <ol class="archive"> - {% for article in articles %} + {% for article in date_year %} <li class="clearfix"><a href="{{ article.url }}"><time datetime="{{ article.date.isoformat() }}" pubdate>{{ article.locale_date }}</time> {{ article.title }}</a></li> {% endfor %} </ol> {% endfor %} - {% endfor %} </div> </div> {% endblock %}
\ No newline at end of file |