cmc/cleberg.net
My personal web garden & blog.
clone: git clone https://gitbay.org/cmc/cleberg.net.git
main: content/templates/list.html · raw
1{# A listing page: the blog index, the garden index, and each tag page.
2 Uses the .post-list / .post-list-item classes styles.css already defines. #}
3{% extends "base.html" %}
4{% block content %}
5<ul class="post-list">
6{%- for entry in pages %}
7<li class="post-list-item">
8{%- if entry.date_iso %}<time datetime="{{ entry.date_iso }}">{{ entry.date_iso }}</time>{% endif %}
9<a href="{{ root }}{{ entry.url }}">{{ entry.title }}</a>
10</li>
11{%- endfor %}
12</ul>
13{% endblock %}