lost-train/theme-dark/templates/archives.html

19 lines
479 B
HTML

{% extends "base.html" %}
{% block content_header %}
<div class="fl o-50" style="font-size:0.4em;">@rchives<br/>{{ SITENAME }}</div>
<a class="b fr o-30 pr1" style="font-size:0.8em;" href="{{ SITEURL }}">{{ SITENAME }}</a>
{% endblock %}
{% block content %}
<dl>
{% for article in dates %}
<dt>
<a class="noticeable" href='{{ SITEURL }}/{{ article.url }}'>
{{ article.date.isoformat() }} - {{ article.title }}
</a>
</dt>
{% endfor %}
</dl>
{% endblock %}