v6/site_test/tag.html

22 lines
355 B
HTML
Raw Normal View History

{% extends "default" %}
2024-12-31 14:29:11 -05:00
{% block titlevariable %}
{% set title = tag_name ~ " posts" %}
{% endblock %}
2024-12-31 14:29:11 -05:00
{% block content -%}
<h1>{{ tag_name }} posts</h1>
<ul>
{% for entry in posts %}
<li>
<a href="{{ entry.permalink }}">
{{ entry.title }}
</a>
</li>
{% endfor %}
</ul>
2024-12-31 14:29:11 -05:00
{%- endblock %}