Introduction

Jekyll collections are a powerful way to organize content on your site.

When should you use collections?

Ben Balter has a great overview on his blog called Explain Like I’m Five - Jekyll Collections. In the post, Ben includes the following diagram of when you should use a post, page or collection in Jekyll.

+-------------------------------------+         +----------------+
| Can the things be logically grouped?|---No--->|    Use pages   |
+-------------------------------------+         +----------------+
                |
               Yes
                |
                V
+-------------------------------------+         +----------------+
|      Are they grouped by date?      |---No--->|Use a collection|
+-------------------------------------+         +----------------+
                |
               Yes
                |
                V
+-------------------------------------+
|            Use posts                |
+-------------------------------------+

Data structure

In this tutorial we’re looking at a page on the demo Bakery Store site which lists all the cookies we have.

Cookies page

Each cookie has an image, heading and content.

...
<div class="cookie">
  <h2>
    <img src="https://upload.wikimedia.org/wikipedia/commons/d/d1/AfghanBiscuit.jpg" alt="Afghan">
    Afghan
  </h2>
  <p>
    An Afghan biscuit is a traditional New Zealand biscuit made from flour, butter, cornflakes, sugar and cocoa powder, topped with chocolate icing and a half walnut. The recipe[1] has a high proportion of butter, and relatively low sugar, and no leavening (rising agent), giving it a soft, dense and rich texture, with crunchiness from the cornflakes, rather than from a high sugar content. The high butter content gives a soft melt-in-the-mouth texture, and the sweetness of the icing offsets the low sugar and the cocoa bitterness. The origin of the recipe and the derivation of the name are unknown, but the recipe has appeared in many editions of the influential New Zealand Edmonds Cookery Book.
  </p>
  <p>Source <a href="https://en.wikipedia.org/wiki/Afghan_biscuit">Wikipedia</a></p>
</div>
...

If we wanted to add another cookie, we would copy and paste an existing cookies and update the content. The problem with doing this is once there’s multiple cookies there updating structure becomes tricky. For example if we wanted to add a rating we’d add HTML to each cookie and it’s likely we’d make a mistake. Collections eliminate this repetition and make the content easier to maintain.

Basic implementation

Defining collections happens in _config.yml. First we add a collections object, then under collections we define the collections we want on the site. In this case we’re going to have one collections called cookies:

collections:
  cookies:

Documents (the items in a collection) live in a folder in the root of the site named _*collection_name*, in this case it’s _cookies. Documents can either be Markdown or HTML. Markdown is more common as it’s easier to work with.

Now we’ll create a document for each cookie. The image and title are specified in front matter and the description in the content. For the Afghan cookie we’ll create _cookies/afghan.md and copy the content across:

---
title: Afghan
image_path: https://upload.wikimedia.org/wikipedia/commons/d/d1/AfghanBiscuit.jpg
---
An Afghan biscuit is a traditional New Zealand biscuit made from flour, butter, cornflakes, sugar and cocoa powder, topped with chocolate icing and a half walnut. The recipe[1] has a high proportion of butter, and relatively low sugar, and no leavening (rising agent), giving it a soft, dense and rich texture, with crunchiness from the cornflakes, rather than from a high sugar content. The high butter content gives a soft melt-in-the-mouth texture, and the sweetness of the icing offsets the low sugar and the cocoa bitterness. The origin of the recipe and the derivation of the name are unknown, but the recipe has appeared in many editions of the influential New Zealand Edmonds Cookery Book.

Source [Wikipedia](https://en.wikipedia.org/wiki/Afghan_biscuit)

Repeat this for the other cookies.

Next we’ll replace the hardcoded cookie data in cookies.html with data from our cookie collection. Jekyll makes collection documents available to us at site.*collection_name*, in this case it’s site.cookies. Let’s iterate over our documents and output the data:

---
layout: page
title: Cookies
---
{% for cookie in site.cookies %}
  <div class="cookie">
    <h2><img src="{{ cookie.image_path }}" alt="{{ cookie.title }}">{{ cookie.title }}</a></h2>
    {{ cookie.content }}
  </div>
{% endfor %}

Remember when you change _config.yml you need to restart your Jekyll server for the changes to take affect.

The output of this page is exactly the same and notice how much we’ve reduced the source code.

Output collection documents as pages

Now we have the cookies printed out on this page using collections, let’s try something more advanced. Instead of having all the cookies and content on one page, let’s just have the cookie title which links to another page with more information about that cookie.

We can add an output: true flag to our collection configuration in _config.yml which means Jekyll will generate a page for each document.

collections:
  cookies:
    output: true

In cookies.html we’ll remove the content and image. We’ll link the <h2> to the generated document page. The url is available to us at document.url:

---
layout: page
title: Cookies
---
{% for cookie in site.cookies %}
  <div class="cookie">
    <h2><a href="{{ cookie.url }}">{{ cookie.title }}</a></h2>
  </div>
{% endfor %}

Now we need to create a layout for the documents. We’ll create _layouts/cookie.html with a basic layout:

---
layout: page
---
<div class="cookie">
  <h2><img src="{{ page.image_path }}" alt="page.title" />{{ page.title }}</h2>

  <div class="blog-post spacing">
    {{ content }}
  </div>
</div>

Then each document we can set the cookie layout:

---
layout: cookie
title: Afghan
image_path: https://upload.wikimedia.org/wikipedia/commons/d/d1/AfghanBiscuit.jpg
---
An Afghan biscuit is a traditional New Zealand biscuit made from flour, butter, cornflakes, sugar and cocoa powder, topped with chocolate icing and a half walnut. The recipe[1] has a high proportion of butter, and relatively low sugar, and no leavening (rising agent), giving it a soft, dense and rich texture, with crunchiness from the cornflakes, rather than from a high sugar content. The high butter content gives a soft melt-in-the-mouth texture, and the sweetness of the icing offsets the low sugar and the cocoa bitterness. The origin of the recipe and the derivation of the name are unknown, but the recipe has appeared in many editions of the influential New Zealand Edmonds Cookery Book.

Source [Wikipedia](https://en.wikipedia.org/wiki/Afghan_biscuit)

The cookies page has a list of links to cookies:

Cookies page Links

If I click on one, it takes me to a new page with information about that cookie:

Cookie page