From 21505d84d829437048f60ec5b718cf640d9bf34e Mon Sep 17 00:00:00 2001 From: Daniel LaForce Date: Wed, 23 Apr 2025 19:40:50 -0600 Subject: [PATCH] feat: Implement enhanced Knowledge Graph with post/tag connections --- backup-20250422/BaseLayout.astro | 112 ---- backup-20250422/blog-index.astro | 108 ---- backup-20250422/global.css | 832 ---------------------------- backup-20250422/index.astro | 566 ------------------- src/components/Footer.astro | 27 +- src/components/KnowledgeGraph.astro | 59 +- src/pages/search-index.json.js | 64 ++- 7 files changed, 129 insertions(+), 1639 deletions(-) delete mode 100644 backup-20250422/BaseLayout.astro delete mode 100644 backup-20250422/blog-index.astro delete mode 100644 backup-20250422/global.css delete mode 100644 backup-20250422/index.astro diff --git a/backup-20250422/BaseLayout.astro b/backup-20250422/BaseLayout.astro deleted file mode 100644 index e310117..0000000 --- a/backup-20250422/BaseLayout.astro +++ /dev/null @@ -1,112 +0,0 @@ ---- -import '../styles/global.css'; -import Header from '../components/Header.astro'; -import Footer from '../components/Footer.astro'; - -interface Props { - title: string; - description?: string; -} - -const { title, description = "LaForce IT - Home Lab & DevOps Insights" } = Astro.props; ---- - - - - - - - {title} - - - - - - - - - - - - - - - - - - - - - - - -
- - -
-
-
-
-
- -
- - - -