mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-04-22 03:34:10 +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>
|
<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">
|
||||||
|
|
Loading…
Reference in a new issue