Listing tags in each post
20 Mar 2016 | tags: JekyllTo list the tags of each post, we have to change index.html
and the post layout. Changing
the index.html
is needed because (at least for me) the build process when
browsing all the posts is different than the one used when viewing a single post.
In the first case, I needed to add this; be sure there’s post variable defined when using this piece of code or the parse would fail) to index.html
:
tags: {% for tags in post.tags %} {{ tags }} {% endfor %}
In the second one, I needed this snipped of code:
tags: {% for tags in page.tags %} {{ tags }} {% endfor %}