Hide hashtags from tag list
This commit is contained in:
parent
95ea248518
commit
9a8758d7fc
@ -43,7 +43,9 @@
|
|||||||
<p>{{ "This article is under the {{ license }} license." | _(license=article.post.license) }}</p>
|
<p>{{ "This article is under the {{ license }} license." | _(license=article.post.license) }}</p>
|
||||||
<ul class="tags">
|
<ul class="tags">
|
||||||
{% for tag in article.tags %}
|
{% for tag in article.tags %}
|
||||||
|
{% if not tag.is_hashtag %}
|
||||||
<li><a href="/tag/{{ tag.tag }}">{{ tag.tag }}</a></li>
|
<li><a href="/tag/{{ tag.tag }}">{{ tag.tag }}</a></li>
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
|
Loading…
Reference in New Issue
Block a user