pbe/example-site/templates/archive.html

23 lines
508 B
HTML
Raw Normal View History

2023-06-27 17:18:52 -04:00
{% extends "base.html" %}
2023-07-01 16:24:36 -04:00
{% block title %}Posts Archive :: {% endblock title %}
2023-06-27 17:18:52 -04:00
{% block content %}
<header>
<h1>Posts Archive</h1>
</header>
<table>
{% for post in posts %}
<tr>
<td><time>{{ post.date | date(format="%Y-%b-%d") }}</time></td>
2023-06-27 17:18:52 -04:00
<td>
<a href="{{ post.url }}">{{ post.title }}</a>
<span class="tags">
{%- for tag in post.tags -%}
<span><a href="/tag/{{ tag }}">{{ tag }}</a></span>
2023-06-27 17:18:52 -04:00
{%- endfor -%}
</span>
</td>
</tr>
{% endfor %}
</table>
{% endblock content %}