fix: use blueprint dynamic url for tag page

This commit is contained in:
Ayo Ayco 2025-01-18 19:56:05 +01:00
parent 3c2665630d
commit 6246445adb

View file

@ -315,7 +315,7 @@
{% if tags is defined%}
<div class="featured-tags">
{% for tag in tags %}
<a class="pill" href="/tag/{{ tag.name }}">
<a class="pill" href="{{url_for('threads.tag', id=tag.name) }}">
<span class="pill-label">{{ tag.statuses_count }}</span>
{{ tag.name }}
</a>