1
0
Fork 0
forked from github/pelican
pelican-theme/templates/archives.html

16 lines
432 B
HTML
Raw Normal View History

{% extends "base.html" %}
2018-06-13 00:20:55 +00:00
{% block title %}{{ SITENAME|striptags }} - Archives{% endblock %}
2018-06-13 00:20:55 +00:00
{% block content %}
2024-12-19 09:56:25 +01:00
<div class="md:text-base lg:text-lg">
<h2>Blog archive</h2>
<dl class="hyphens-auto">
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
2024-12-19 09:56:25 +01:00
</div>
{% endblock %}