diff options
author | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2024-06-21 21:59:53 +0530 |
---|---|---|
committer | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2024-06-21 21:59:53 +0530 |
commit | a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37 (patch) | |
tree | 8fef59a521ef25442d0c99c0e24c2e5bb97827d0 /posts | |
parent | Hot fix (diff) | |
download | sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.gz sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.bz2 sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.lz sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.xz sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.zst sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.zip |
Update deps and updated the about page.
On branch main
Your branch is up to date with 'origin/main'.
Changes to be committed:
modified: 404.html
modified: _includes/base.html
new file: _includes/main.css
modified: _includes/page.html
modified: _includes/post.html
modified: about.html
deleted: assets/main.css
deleted: atom.xml.njk
modified: eleventy.config.js
modified: index.html
modified: package-lock.json
modified: package.json
modified: posts.html
modified: posts/posts.11tydata.js
Diffstat (limited to 'posts')
-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)}/` } |