Heuzef - Les notes excentriques d'un bidouilleur.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 line
457 B

  1. {% extends "base.html" %}
  2. {% block title %}
  3. Archives for {{ period | reverse | join(' ') }} {{ super() }}
  4. {% endblock %}
  5. {% block page_header %}
  6. Archives for {{ period | reverse | join(' ') }}
  7. {% endblock %}
  8. {% block content %}
  9. <dl class="dl-horizontal">
  10. {% for article in dates %}
  11. <dt>{{ article.locale_date }}</dt>
  12. <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
  13. {% endfor %}
  14. </dl>
  15. {% endblock %}