1
0
Fork 0
website/templates/tag.html
2023-03-29 21:56:58 +02:00

20 lines
604 B
HTML

{% extends "base.html" %}
{% block main -%}
<article>
{% if page.title -%}
<h1>{{ page.title }}</h1>
{% endif -%}
<ul>
{% for post in posts -%}
<li><a href="{{post.absolute_path | safe}}">{% if post.date -%}
<time datetime="{{ post.date }}">{{ post.date | date(format="%Y-%m-%d") }}</time> - {{ post.title -}}
{% else -%}
{{ post.title -}}
{% endif -%}
</a></li>
{% endfor -%}
</ul>
</article>
{% endblock main -%}