Hide hashtags from tag list

This commit is contained in:
Trinity Pointard 2018-10-20 23:45:29 +02:00
parent 95ea248518
commit 9a8758d7fc
1 changed files with 3 additions and 1 deletions

View File

@ -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 %}
<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 %} {% endfor %}
</ul> </ul>
<div class="flex"> <div class="flex">