layout |
---|
page |
Run this under tag folder in order to generate a page for each of your tags. If you added a new tag you need to come to this page and run the script again.
{% highlight bash %} {% for tag in site.tags %} echo -e '---\nlayout: tag_index\ntag: {{ tag[0] }} \n---' > '{{ tag[0] }}.md' & {% endfor %} {% endhighlight %}