mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-04-13 07:14:09 +00:00
Hide hashtags from tag list
This commit is contained in:
parent
95ea248518
commit
9a8758d7fc
1 changed files with 3 additions and 1 deletions
|
@ -43,7 +43,9 @@
|
|||
<p>{{ "This article is under the {{ license }} license." | _(license=article.post.license) }}</p>
|
||||
<ul class="tags">
|
||||
{% for tag in article.tags %}
|
||||
<li><a href="/tag/{{ tag.tag }}">{{ tag.tag }}</a></li>
|
||||
{% if not tag.is_hashtag %}
|
||||
<li><a href="/tag/{{ tag.tag }}">{{ tag.tag }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<div class="flex">
|
||||
|
|
Loading…
Reference in a new issue