archives.html 780 B

1234567891011121314151617181920212223
  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} | Archives{% endblock %}
  3. {% block content %}
  4. <h1>Archives</h1>
  5. {# based on http://stackoverflow.com/questions/12764291/jinja2-group-by-month-year #}
  6. {% for year, year_group in dates|groupby('date.year')|reverse %}
  7. {% for month, month_group in year_group|groupby('date.month')|reverse %}
  8. <h4 class="date">{{ (month_group|first).date|strftime('%b %Y') }}</h4>
  9. <div class="post archives">
  10. <ul>
  11. {% for article in month_group %}
  12. <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
  13. {% endfor %}
  14. </ul>
  15. </div>
  16. {% endfor %}
  17. {% endfor %}
  18. {% endblock %}