1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-18 02:22:31 +00:00
free_zed.gitlab.io/theme-uberspot/templates/index.html
Freezed 8a0ffa824c 💄 Fix URLs & remove useless templates
TODO footer :
* Add pages
* Add last commit hash/link
* Bottom line

TODO plugin:
* post_stats
* tipue_search
* neighbors
* https://github.com/pelican-plugins/seo

Source : https://gitlab.com/axil/pelican-uberspot/-/blob/master/README.md
2020-07-25 23:06:29 +02:00

19 lines
455 B
HTML

{% 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="{{ SITEURL }}/{{ ARCHIVES_URL }}">Parcourir les {{ articles|length }} notes</a></p>
{% endblock content %}