blob: 6ff996881642945b52e2dc201bff2e82d585994a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{# A listing page: the blog index, the garden index, and each tag page.
Uses the .post-list / .post-list-item classes styles.css already defines. #}
{% extends "base.html" %}
{% block content %}
<ul class="post-list">
{%- for entry in pages %}
<li class="post-list-item">
{%- if entry.date_iso %}<time datetime="{{ entry.date_iso }}">{{ entry.date_iso }}</time>{% endif %}
<a href="{{ root }}{{ entry.url }}">{{ entry.title }}</a>
</li>
{%- endfor %}
</ul>
{% endblock %}
|