Skip to content

Instantly share code, notes, and snippets.

@moshfeu
Created October 22, 2018 21:07
Show Gist options
  • Save moshfeu/523eba7ab6be19b524accbbe1cf86f72 to your computer and use it in GitHub Desktop.
Save moshfeu/523eba7ab6be19b524accbbe1cf86f72 to your computer and use it in GitHub Desktop.
display tags list in jekyll page
{% for tag in site.tags %}
<li><a href="/tags/{{ tag[0] | slugify }}" class="post-tag">{{ tag[0] }}</a></li>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment