1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-08 23:42:37 +00:00
free_zed.gitlab.io/theme-uberspot/templates/index.html

19 lines
437 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<h2>Notes récentes</h2>
<ul class="post-list">
{% if articles %}
{% for article in dates[:10] %}
<li>
<a href="/{{ article.url }}">{{ article.title }}</a>
<time>{{ article.locale_date }}</time>
</li>
{% endfor %}
{% endif %}
</ul>
<p>&rarr; <a href="/archives.html">Parcourir les {{ articles|length }} notes</a></p>
{% endblock content %}