fix: use blueprint dynamic url for tag page
This commit is contained in:
parent
3c2665630d
commit
6246445adb
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@
|
||||||
{% if tags is defined%}
|
{% if tags is defined%}
|
||||||
<div class="featured-tags">
|
<div class="featured-tags">
|
||||||
{% for tag in 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>
|
<span class="pill-label">{{ tag.statuses_count }}</span>
|
||||||
{{ tag.name }}
|
{{ tag.name }}
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in a new issue