diff options
Diffstat (limited to 'posts/posts.11tydata.js')
-rw-r--r-- | posts/posts.11tydata.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/posts/posts.11tydata.js b/posts/posts.11tydata.js index e22d809..f03d0cf 100644 --- a/posts/posts.11tydata.js +++ b/posts/posts.11tydata.js @@ -2,7 +2,10 @@ import slugify from '@sindresorhus/slugify'; export default _ => { return { - layout: "post.html", + layout: "post", + tags: [ + "post" + ], eleventyComputed: { permalink: data => `posts/${slugify(data.title)}/` } |