Private
Public Access
1
0
Files
rasmusbendtsendk/templates/tag.html
2025-12-22 07:45:36 +01:00

16 lines
423 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>Posts tagged with "{{ tag_name }}"</h2>
<div class="post-list">
{% for p in pages %}
<article class="post-item">
<h3><a href="{{ url_for('post', path=p.path) }}">{{ p.title }}</a></h3>
<span class="date">{{ p.date }}</span>
</article>
{% else %}
<p>No posts found with this tag.</p>
{% endfor %}
</div>
{% endblock %}