Limit jekyll post list to certain categories

Mark Szymanski picture Mark Szymanski · Jan 23, 2011 · Viewed 10k times · Source

I have a jekyll website and I have a category (called photo) and I wanted to create a separate layout for a page that would list just the posts that were in the photo category. I also want to keep posts with the photo category out of the main index page.

Answer

David Burrows picture David Burrows · Jan 24, 2012

All categories are available within the site object, access the posts of a category via site.categories.photo so your loop would look like this

{% for post in site.categories.photo %}
    # render the photo post html
{% endfor %}