Last active
March 21, 2016 03:59
-
-
Save DavidGoussev/2caf5f6ce3d5ac4922c8 to your computer and use it in GitHub Desktop.
adding tags to jekyll blog
This file contains hidden or 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
| <ul class="tags"> | |
| {% for tag in page.tags %} | |
| <li><a href="{{site.baseurl}}tags#{{tag}}" class="tag">{{ tag }}</a></li> | |
| {% endfor %} | |
| </ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment