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

16 lines
432 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - Archives{% endblock %}
{% block content %}
<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>
</div>
{% endblock %}