Skip to content

Instantly share code, notes, and snippets.

@adilsonfsantos
Created December 20, 2019 17:40
Show Gist options
  • Save adilsonfsantos/db60475db0cc63364e74e0f3ee22be03 to your computer and use it in GitHub Desktop.
Save adilsonfsantos/db60475db0cc63364e74e0f3ee22be03 to your computer and use it in GitHub Desktop.
Easy post tags in Jekyll
<p class="tag">{{ post.tags | join: ', ' }}</p>
<!-- For loop -->
{% for tag in post.tags %}
<li class="tag">{{ tag }}</li>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment