blob: e22d809f0ac008979bc501f6eef1e7bf5e5b897a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import slugify from '@sindresorhus/slugify';
export default _ => {
return {
layout: "post.html",
eleventyComputed: {
permalink: data => `posts/${slugify(data.title)}/`
}
}
}
|