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
+3 -4
View File
@@ -15,17 +15,16 @@
{{ article.content }} {{ article.content }}
{% if article.tags %} {% if article.tags %}
<hr> <span class="post-tags">
<p><b>Tags:</b></p> Tags:
<ul> <ul>
{% for tag in article.tags %} {% for tag in article.tags %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li> <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
</span>
{% endif %} {% endif %}
{% include 'fragments/disqus.html' %} {% include 'fragments/disqus.html' %}
</div> </div>
{% endblock %} {% endblock %}