pbe/example-site/templates/tag.html

16 lines
364 B
HTML
Raw Permalink 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 With Tag {{ tag }} :: {% endblock title %}
2023-06-27 17:18:52 -04:00
{% block content %}
<header>
<h1>Posts With Tag "{{ tag }}"</h1>
</header>
<table>
{% for post in posts %}
<tr>
<td><time>{{ post.date | date }}</time></td>
2023-06-27 17:18:52 -04:00
<td><a href="{{ post.url }}">{{ post.title }}</a></td>
</tr>
{% endfor %}
</table>
{% endblock content %}