Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 340 Bytes

admin.md

File metadata and controls

10 lines (8 loc) · 340 Bytes
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 $'---\nlayout: tag_index\ntag: {{ tag[0] }} \n---' > '{{ tag[0] }}.md' &{% endfor %} {% endhighlight %}