add archives page, link for gitlog

This commit is contained in:
2021-08-06 10:16:51 -07:00
parent 0a89655e79
commit 5c828f6589
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Archives{% endblock %}
{% block content %}
<h1>Archives for {{ SITENAME }}</h1>
<dl class="pure-menu-list">
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd class="pure-menu-item">
<a class="pure-menu-link" href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
</dd>
{% endfor %}
</dl>
{% endblock %}