11tyThe possum is Eleventy’s mascot

Eleventy Documentation

This is an older version of Eleventy. Full release history. Go to the newest Eleventy docs. You could try /docs/quicktips/tag-pages/ although it may not exist.

Documentation Pages

Quick Tip #004—Zero Maintenance Tag Pages for your Blog

This post uses features available in Eleventy 0.4.0 and newer.

This quick tip will show you how to automatically generate Tag Pages (lists of content tagged into a collection).

We’ll use pagination to automatically generate a template for each tag we want to link to.

Here’s a sample pagination template using Nunjucks:

---
pagination:
data: collections
size: 1
alias: tag
permalink: /tags/{{ tag }}/

---

<h1>Tagged “{{ tag }}”</h1>

<ol>
{% set taglist = collections[ tag ] %}
{% for post in taglist | reverse %}
<li><a href="{{ post.url | url }}">{{ post.data.title }}</li>
{% endfor %}
</ol>

First up notice how we’re pointing our pagination to iterate over collections, which is an object keyed with tag names pointing to the collection of content containing that tag.

Consider these two sample markdown posts, one using a tech tag and one using a personal tag:

---
title: My First Post
tags:
- tech

---
---
title: My Second Post
tags:
- personal

---

Our pagination template above will now generate two pages: /tags/personal/index.html and /tags/tech/index.html.

The great thing here is that we don’t have to manage our tag list in a central place. These tags can be littered throughout our content and individual tag pages will be created automatically.

Filtering / Excluding #

Have a tag you’d like to exclude from this list? Use pagination filtering like this:

---
pagination:
data: collections
size: 1
alias: tag
filter:
- tech
permalink: /tags/{{ tag }}/

---

Now Eleventy will only generate a /tags/personal/ template and tech will be ignored.

In Practice #

This is currently in use on the eleventy-base-blog sample project. Check out source code in the tags.njk template and see a live demo.