An easy way to support tags in a jekyll blog
Here is a solution with alphabetically sorted tags on a single page. It uses Liquid only, which means that it works on GitHub Pages: {% capture tags %} {% for tag in site.tags %} {{ tag[0] }} {% endfor %} {% endcapture %} {% assign sortedtags = tags | split:’ ‘ | sort %} {% … Read more