summaryrefslogtreecommitdiffstats
path: root/src/post/post.11tydata.js
blob: 6ae489a0bc56059cd2b8d647927652c742851e10 (plain) (blame)
1
2
3
4
5
6
7
8
const slugify = require("@sindresorhus/slugify");

module.exports = () => ({
    layout: "post",
    eleventyComputed: {
        permalink: data => `/posts/${slugify(data.title)}/`
    }
});