Let's Learn 11ty Part 3: Collections, Shortcodes, Macros

Let's Learn 11ty Part 3: Collections, Shortcodes, Macros

Read 2513 times

#webdev

#tutorial

#eleventy

#ssg

So far we have look at the basic aspects of Eleventy. Let’s now delve deeper into more granular details of Eleventy

Collections

In my opinion, collections are the cornerstone of Eleventy. Collections allow you group pieces of content is varying ways. This is done by using tags.

Tags in Eleventy

Tags in Eleventy work differently from tags you might have seen elsewhere. They have one purpose - to create collections. Whereas in other places you may have seen them, they are used as a hierarchy of labels for the content.

if you recall, I mentioned that we would improve our navigation. We are going to do that by making use of collections.

We will start by adding tags to our pages’ YAML data

---
layout: base
title: Home
tags: page 
---

Do the same for the about.md file. in addition, we will make a blog.md file in the same level as our other files - the src folder.

---
layout: base
title: Blog
tags: page
---

# Blog Home
<nav>
    {%- for item in collections.page -%}
	    <a href="{{ item.url }}">{{ item.data.title }}</a>
    {%- endfor -%}
</nav>

In the code above:

New Navigation

Listing Blog Posts on Blog Home

Let’s use the same concept, make some blog posts and list them on the Blog Home Page

---
title: First Post
layout: base
tags: post
---

# First Post
---
layout: base
title: Blog
tags: page
---

<h1>Blog Home</h1>

<ul>
    {% for post in collections.post %}
        <li>
            <a href="{{ post.url }}">{{ post.data.title }}</a>
        </li>
    {% endfor %}
</ul>

post list

Pretty cool, huh?

This is just a small look into collections, there is so much more you can do with the. And various ways you can make use of them: Collections Docs


Shortcodes

Shortcodes are a way to make use of reusable blocks of code. Say for example, on your site there is a structure that repeats on your site you would use a shortcode to simplify the adding of that content.

In simplest terms, a shortcode is a function

Let’s have a look and make our first shortcode. Say we wanted a title and subtitle on our main pages, we could make a shortcode, like this in .eleventy.js:

/* .eleventy.js */

module.exports = function(eleventyConfig) {
  eleventyConfig.addPassthroughCopy("src/assets/css/style.css");
  eleventyConfig.addPassthroughCopy("src/assets/images");

  // ADD THIS
  eleventyConfig.addShortcode(
    "headers",
    (title, subtitle) =>
      `<h1>${title}</h1>
        <p>${subtitle}</p>`
  );

  return {
    dir: {
      input: "src",
      data: "_data",
      includes: "_includes",
      layouts: "_layouts",
    },
  };
};

Now, we will change index.md to index.njk and change it’s contents to this:

---
layout: base
title: Home
tags: page 
---

<img src="/assets/images/learn.png" alt="">

<!-- Shortcode in use -->
{% headers "Home", "Learning SSG"%}

<br>

I am a site built with <a href="https://www.11ty.io/">Eleventy</a>

This site is my effort to understand Eleventy. I am doing so by guiding others.

Together, we will Learn Eleventy.

shortcode

Notes


Macros

Macros can be used in the same we use shortcodes, what differs is their implementaion. Take for example the shortcode we just made, the macro for it would look like this

<!-- _includes/macros/headers.njlk -->
{%  macro pageHeading(heading, subheading) %}

<h1>{{heading}}</h1>
<p>{{subheading}}</p>

{% endmacro %}

And it would be used like this:


{% import "macros/headers.njk" as macro %}

{{ macro.pageHeading("Home", "Learn Eleventy")}}

My Advice

Stick to shortcodes. Macros have a tendency of becoming complicated.
If you really have to, use the common tags package insted


Conclusion

Our site is coming along nicely.

As always:

I’ll catch you all in the next one :D


Thank you for reading, let’s connect!

Thank you for visiting this little corner of mine. Let’s connect on Twitter, Polywork and LinkedIn

Back to articles