Update article tags to display same as index

This commit is contained in:
Floyd Hightower
2021-12-24 22:16:05 -04:00
committed by José Guilherme Vanz
parent ba3949f07a
commit 9e6f6a15f0
+8 -9
View File
@@ -15,17 +15,16 @@
{{ article.content }}
{% if article.tags %}
<hr>
<p><b>Tags:</b></p>
<ul>
{% for tag in article.tags %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>
<span class="post-tags">
Tags:
<ul>
{% for tag in article.tags %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>
</span>
{% endif %}
{% include 'fragments/disqus.html' %}
</div>
{% endblock %}