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 lines
463 B

  1. {% extends "base.html" %}
  2. {% block title %}
  3. Archives {{ super() }}
  4. {% endblock %}
  5. {% block page_header %}
  6. Archives
  7. {% endblock %}
  8. {% block content %}
  9. <dl class="row">
  10. {% for article in dates %}
  11. <dt class="col-sm-4">{{ article.locale_date }}</dt>
  12. <dd class="col-sm-8"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}{% if article.link %} <i class="fas fa-link"></i>{% endif %}</a></dd>
  13. {% endfor %}
  14. </dl>
  15. {% endblock %}