/ ‘themes/aurora/templates/category.html’ / ‘themes/aurora/templates/page.html’ / ‘themes/moe-dark/templates/archives.html’ / ‘themes/moe-dark/templates/category.html’ / ‘themes/moe-dark/templates/page.html’ / ‘themes/yoshi/templates/archives.html’ / ‘themes/yoshi/templates/category.html’ / ‘themes/yoshi/templates/page.html’
19 lines
469 B
HTML
19 lines
469 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 shrinkingtitle" 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 %}
|