rebuild with purecss instead of bootstrap

This commit is contained in:
2021-08-06 08:15:43 -07:00
parent ab06644a12
commit 097f07df6e
19 changed files with 404 additions and 145 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 %}