Within my post, I have three tags in my front matter, I am trying to loop through these tags but it just puts all three of them mashed together in one string.
I am using this:
<tr>
{% for tag in post.tags %}
<td>{{ post.tag }}</td>
{% endfor %}
</tr>
I’d like an out of the box solution instead of relying on plugins but I am hosting my own so I am able to use them if I have to.
You are referencing
page.tagsinstead of justtagin your loop. Use the following:Read more in the documentation.