Created
October 22, 2018 21:07
-
-
Save moshfeu/523eba7ab6be19b524accbbe1cf86f72 to your computer and use it in GitHub Desktop.
display tags list in jekyll page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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