lost-train/content/pages.html

21 lines
617 B
HTML

{% extends "base.html" %}
{% block content_title %}
<div class="fl o-50" style="font-size:0.4em;">[|] <br/>#pages#</div>
<a class="fr o-50" style="font-size: 0.5em;" href="{{ SITEURL }}/pages.html">|</a>
<a class="fr o-10 pr1" style="font-size:0.8em;" href="{{ SITEURL }}">{{ SITENAME }}</a>
{% endblock %}
{% block content %}
<dl>
{% for page in pages |sort(attribute="date") %}
<dt>
<a class="noticeable" href='{{ SITEURL }}/{{ page.url }}'>
[{{ page.title }}]
</a>
<span class="o-50" style="font-size:0.7em"> | {{ page.date.isoformat() }}</span>
</dt>
{% endfor %}
</dl>
{% endblock %}