From e1634059a75054c8f7dcc5ece66d1222fb18597c Mon Sep 17 00:00:00 2001 From: Marc Pervaz Boocha Date: Sun, 15 Dec 2024 14:34:00 +0530 Subject: Updated deps --- src/about.11tydata.js | 10 ++++++++++ src/about.html | 14 ++------------ src/index.11tydata.js | 10 ++++++++++ src/index.html | 12 +----------- src/posts.11tydata.js | 10 ++++++++++ src/posts.html | 16 +++------------- src/posts/posts.11tydata.js | 6 ++++-- 7 files changed, 40 insertions(+), 38 deletions(-) create mode 100644 src/about.11tydata.js create mode 100644 src/index.11tydata.js create mode 100644 src/posts.11tydata.js (limited to 'src') diff --git a/src/about.11tydata.js b/src/about.11tydata.js new file mode 100644 index 0000000..f065cd9 --- /dev/null +++ b/src/about.11tydata.js @@ -0,0 +1,10 @@ +export default function () { + return { + layout: "page", + title: "About Me", + eleventyNavigation: { + key: "About Me", + order: 3 + } + } +} \ No newline at end of file diff --git a/src/about.html b/src/about.html index a940600..5a40cfc 100644 --- a/src/about.html +++ b/src/about.html @@ -1,14 +1,3 @@ ----json -{ -"layout": "page", -"title": "About Me", -"eleventyNavigation":{ -"key": "About Me", -"order": 3 -} -} ---- -
@@ -28,7 +17,8 @@
  • Email
  • Github
  • LinkedIn
  • + itemprop="sameas">LinkedIn +
    diff --git a/src/index.11tydata.js b/src/index.11tydata.js new file mode 100644 index 0000000..8d236fc --- /dev/null +++ b/src/index.11tydata.js @@ -0,0 +1,10 @@ +export default function () { + return { + layout: "page.html", + title: "Welcome", + eleventyNavigation: { + key: "Home", + order: 1 + } + } +} \ No newline at end of file diff --git a/src/index.html b/src/index.html index 866a6c5..2b4435d 100644 --- a/src/index.html +++ b/src/index.html @@ -1,13 +1,3 @@ ----json -{ -"layout": "page.html", -"title": "Welcome", -"eleventyNavigation": { -"key": "Home", -"order": 1 -} -} ----