I am using the standard jekyll installation to maintain a blog, everything is going fine. Except I would really to tag my posts.

I can tag a post by using the YAML front matter, but how do I generate pages for each tag that can will list all posts for a tag?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 2 down vote accepted

There's also this gist, which will generate a page per category for you: https://gist.github.com/524748

It uses a Jekyll Generator plugin, plus a Page subclass.

link|improve this answer
feedback

Have a look at sites using jekyll. There are a few custom forks which have implemented tagging functionality, hopefully also in the way you want :-)

link|improve this answer
feedback

I had the same question, and stumbled upon this: http://gist.github.com/143571.

It's a rake task which generates a tag list. I modified it slightly, and my version is at: http://github.com/mattfoster/mattfoster.github.com/blob/master/Rakefile.

Whilst this doesn't give you a page per tag, you can use anchors, which is half way there!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.