1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-07-03 17:45:08 +00:00
free_zed.gitlab.io/mytheme/templates/period_archives.html

16 lines
480 B
HTML
Raw Normal View History

2019-01-18 23:09:37 +00:00
{% extends "base.html" %}
{% block content %}
<section id="content" class="body">
2019-01-20 15:04:38 +00:00
{% block content_title %}
<h2>Archives pour {{ period | reverse | join(' ') }}</h2>
{% endblock content_title %}
<ul>
2019-01-18 23:09:37 +00:00
{% for article in dates %}
2019-01-20 15:04:38 +00:00
<li>
{{ article.date|strftime('%Y %b') }} &raquo; <a href="{{ SITEURL }}/{{ article.url }}" title="{{ article.summary }}">{{ article.title }}</a> - [ {% include 'taglist_short.html' %}]
2019-01-20 15:04:38 +00:00
</li>
2019-01-18 23:09:37 +00:00
{% endfor %}
2019-01-20 15:04:38 +00:00
</ul>
2019-01-18 23:09:37 +00:00
</section>
{% endblock %}