2023-06-27 17:18:52 -04:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Posts With Tag {{ tag }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
|
|
<header>
|
|
|
|
<h1>Posts With Tag "{{ tag }}"</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
{% for post in posts %}
|
|
|
|
<tr>
|
2023-06-28 15:16:24 -04:00
|
|
|
<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 %}
|