From 2828d3d166b9a02ea627e94f0d12f897b7e155c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20H=C3=B6lting?= <87192362+moritz-hoelting@users.noreply.github.com> Date: Wed, 18 Mar 2026 15:38:07 +0100 Subject: [PATCH] change work -> qualifications (add education) --- src/components/ArticleContent.astro | 2 +- src/components/Header.astro | 16 ++-- src/consts.ts | 12 +-- src/content.config.ts | 15 +++- src/content/education/abitur.md | 6 ++ src/content/education/bachelor-cs.md | 15 ++++ src/content/education/master-cs.md | 7 ++ src/content/work/diebold-nixdorf.md | 2 +- src/pages/qualifications/index.astro | 123 +++++++++++++++++++++++++++ src/pages/work/index.astro | 64 -------------- 10 files changed, 179 insertions(+), 83 deletions(-) create mode 100644 src/content/education/abitur.md create mode 100644 src/content/education/bachelor-cs.md create mode 100644 src/content/education/master-cs.md create mode 100644 src/pages/qualifications/index.astro delete mode 100644 src/pages/work/index.astro diff --git a/src/components/ArticleContent.astro b/src/components/ArticleContent.astro index 4c7474b..49ac5b1 100644 --- a/src/components/ArticleContent.astro +++ b/src/components/ArticleContent.astro @@ -32,7 +32,7 @@ const { Content, headings } = await render(entry); -
+
diff --git a/src/components/Header.astro b/src/components/Header.astro index b372beb..15258d8 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -13,10 +13,10 @@ const subpath = pathname.match(/[^/]+/g);