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.
|
- {% extends "base.html" %}
-
- {% block title %}
- Archives {{ super() }}
- {% endblock %}
-
- {% block page_header %}
- Archives
- {% endblock %}
-
- {% block content %}
- <dl class="row">
- {% for article in dates %}
- <dt class="col-sm-4">{{ article.locale_date }}</dt>
- <dd class="col-sm-8"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}{% if article.link %} <i class="fas fa-link"></i>{% endif %}</a></dd>
- {% endfor %}
- </dl>
- {% endblock %}
|