1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-01 22:02:28 +00:00
free_zed.gitlab.io/theme-uberspot/templates/index.html

19 lines
463 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
2020-09-06 21:56:42 +00:00
<h2>Dernières publications</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="{{ SITEURL }}/{{ ARCHIVES_URL }}">Parcourir les {{ articles|length }} notes</a></p>
{% endblock content %}