Metalsmith Part 2: Shaping The Metal

In my last post I talked about the basic structure of a Metalsmith project and showed you the basics, like templating and plugin installation/configuration. This time we are going to delve further into the subject and look at some Metalsmith internals.

The full source code for this part of the tutorial can be found here

Content Types

Firstly we will need to determine, what kind of content we want to create, or rather, its type. Wordpress by default gives you two options: posts and pages. Posts are blog posts, so articles that are added regularly and pages are content that doesn’t change very often, like contact or about pages. This separation is simple enough so we will use it for now, feel free to add any extra types you will need.

Unlike something like Jekyll Metalsmith does not have a built in “static” page and “dynamic” post mechanism, all files are treated (and created) equal. This has advantages and disadvantages, but I think it makes Metalsmith very flexible.

Firstly, create a new folder for each content type in the src/content folder. Let’s start with an example about page:

1---
2title: About
3template: page.hbt
4---
5Tell the world something about yourself here!

Save this to src/content/pages/about.md

Template Partials

At this stage we should also create partials for the head and foot section of our template, so we don’t have to copy and paste it every time and can simply create a menu or logo that will appear on every page. Every templating engine handles partials differently, so I will only quickly go over my Handlebars version here:

I simply added this to my index.js and added a header.hbt and footer.hbt:

1// ...
2Handlebars = require('handlebars'),
3fs         = require('fs');
4
5Handlebars.registerPartial('header', fs.readFileSync(__dirname + '/templates/partials/header.hbt').toString());
6Handlebars.registerPartial('footer', fs.readFileSync(__dirname + '/templates/partials/footer.hbt').toString());
7//...

Full diff can be found here

As you can see I created a new sub folder in my templates/ folder named partials with the two partial templates containing the wrapping HTML for our content.

Creating Content Templates

Now that we have set up our partials it’s time to add the page template (as required by the “template”-key in about.md), so go ahead and create a page.hbt in the templates/ folder. We won’t do anything special here, just print the title and content:

1{{> header}}
2<h2>{{title}}</h2>
3
4<article>
5    {{{contents}}}
6</article>
7
8{{> footer}}

When you build your project again, you will find an about.html-file under build/content/pages/, just as expected.

Files and Paths

As you might have noticed, Metalsmith replicates the input folder structure in our output folder (build/). When you run Metalsmith, it looks though your source folder and creates an internal representation for every file, including it’s contents and path. It also populates every internal file object with the metadata you pass it in the YAML front-matter. We end up with an object where each key is the file’s path and each file object looks something like this:

1{
2    'title': 'FROM_THE_TITLE_KEY',
3    'template': 'TEMPLATE_NAME',
4    'contents': <Buffer()>,
5    'mode': 'HEX_FILE_PERM_CODE'
6}

As you can see it’s a very simple and intuitive structure that makes it easy to work with the files and write plugins. But you are not limited to modifying only the files themselves, you can also alter the file list, deleting or adding files (including virtual ones).

If we leave or site like this, we will have links that look like this: “hostname/content/pages/about.html”, but wouldn’t it be much nicer (and search engine friendlier) to have a link structure like this: “hostname/pages/about”?

To achieve this we will need two more Metalsmith plugins: metalsmith-collections and metalsmith-permalinks, so install those and save them to your dependencies. Now we will use these two plugins together to achieve our desired result:

Let’s modify our index.js

 1//...
 2    collections = require('metalsmith-collections'),
 3    permalinks  = require('metalsmith-permalinks'),
 4//...
 5
 6Metalsmith(__dirname)
 7    .use(collections())
 8    .use(permalinks())
 9    //...
10    .build()

Full diff can be found here

The collections() function creates a new array for each collection it can find and lists them in the internal metadata (not the file metadata), which then can be accessed in the templates under collections.COLLECTION_NAME. There are two ways to create collections:

The first option is the quickest, but only allows you to add your content to one collection at a time and is easy to forget. The second option is extremely flexible and safer, so we’ll be going with that. So let us add some patterns for our content types:

1//...
2.use(collections({
3    pages: {
4        pattern: 'content/pages/*.md'
5    }
6}))
7//...

Metalsmith will now create a collection for our pages. While it may seem silly to create a collection for our pages it will come in useful when we are constructing our permalinks and when you want to construct a sitemap. For now let’s continue with our permalinks:

1//...
2.use(permalinks({
3    pattern: ':collection/:title'
4}))
5//...

If you run your build script now, you won’t find an about.html but instead a folder named “about” in the pages/ folder with an index.html file. This will result in a link that looks like this: “hostname/pages/about”, just like we wanted.

We can do the same for our posts. So let’s create a simple posts called “First Post” in src/content/posts/first-post.md:

1---
2title: "First Post"
3date: 2014-04-18
4template: post.hbt
5---
6This is an amazing blogpost!

Now we just need to extend the options object for the collections function:

 1//...
 2.use(collections({
 3    pages: {
 4        pattern: 'content/pages/*.md'
 5    },
 6    posts: {
 7        pattern: 'content/posts/*.md',
 8        sortBy: 'date',
 9        reverse: true
10    }
11}))
12//...

Full diff can be found here

Here we make use of metalsmith-collections options to sort the posts by date and reverse the order, so the newest are first.

Collections in Templates

Our collections are kind of useless (except for the permalinks) without displaying them, so let’s change that. We are going to add a page that lists all of our blog posts, so create a file called blog.md in your src/content/pages folder and add the following content:

1---
2title: Blog
3template: blog.hbt
4---

And create the template (templates/blog.hbt):

 1{{> header}}
 2<h2>{{title}}</h2>
 3
 4<article>
 5    <ul>
 6        {{#each collections.posts}}
 7            <li>
 8                <h3>{{this.title}}</h3>
 9                <article>{{this.contents}}</article>
10            </li>
11        {{/each}}
12    </ul>
13</article>
14
15{{> footer}}

Now you have a list of all your articles ordered by date, newest first.

Keep the Flame going

That’s all for now, but next time we will expand our knowledge on collections, look into pagination and have some more fun with Metalsmith’s internals.

The full source code for this part of the tutorial can be found here

Update:

You can find the next post in this series here: Metalsmith Part 3: Refining Our Tools