aboutsummaryrefslogtreecommitdiffstats
path: root/posts/posts.11tydata.js
diff options
context:
space:
mode:
Diffstat (limited to 'posts/posts.11tydata.js')
-rw-r--r--posts/posts.11tydata.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/posts/posts.11tydata.js b/posts/posts.11tydata.js
deleted file mode 100644
index f03d0cf..0000000
--- a/posts/posts.11tydata.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import slugify from '@sindresorhus/slugify';
-
-export default _ => {
- return {
- layout: "post",
- tags: [
- "post"
- ],
- eleventyComputed: {
- permalink: data => `posts/${slugify(data.title)}/`
- }
- }
-}