Tags Loop
<!--
Tags: Including tags on your blog page is a tricky one and gets its own section. This is a great way to group your posts into groups if a visitor is looking to read your posts on a specific topic.
-->
<p>
<!-- Tags: -->
{% for tag in post.tags %}
<a href="tags/{{ tag }}/">{{ tag }}</a>
{% endfor %}
</p>