From 918b47063981816a13091b3e2c17c12e3c22ec95 Mon Sep 17 00:00:00 2001 From: Robert Jagtiani Date: Thu, 14 Mar 2024 15:55:12 +0100 Subject: [PATCH 1/6] =?UTF-8?q?UMBE=20files=20f=C3=BCr=20Templates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 3 +- src/components/UMBE_Footer.astro | 10 +++ src/components/UMBE_Header.astro | 45 +++++++++++ src/components/UMBE_SidebarLeft.astro | 9 +++ src/components/UMBE_SidebarRight.astro | 3 + src/components/UMBE_navcard.astro | 100 +++++++++++++++++++++++++ src/layouts/UMBE_Layout.astro | 96 ++++++++++++++++++++++++ src/pages/UMBE_test.astro | 16 ++++ src/style/UMBE_global.css | 48 ++++++++++++ 9 files changed, 329 insertions(+), 1 deletion(-) create mode 100644 src/components/UMBE_Footer.astro create mode 100644 src/components/UMBE_Header.astro create mode 100644 src/components/UMBE_SidebarLeft.astro create mode 100644 src/components/UMBE_SidebarRight.astro create mode 100644 src/components/UMBE_navcard.astro create mode 100644 src/layouts/UMBE_Layout.astro create mode 100644 src/pages/UMBE_test.astro create mode 100644 src/style/UMBE_global.css diff --git a/.vscode/settings.json b/.vscode/settings.json index 1f926c5b..44a9fd24 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,6 @@ { "i18n-ally.localesPaths": [ "public/locales" - ] + ], + "typescript.tsdk": "node_modules/typescript/lib" } \ No newline at end of file diff --git a/src/components/UMBE_Footer.astro b/src/components/UMBE_Footer.astro new file mode 100644 index 00000000..b142c4bc --- /dev/null +++ b/src/components/UMBE_Footer.astro @@ -0,0 +1,10 @@ +--- +const currentYear = new Date().getFullYear(); +--- + + \ No newline at end of file diff --git a/src/components/UMBE_Header.astro b/src/components/UMBE_Header.astro new file mode 100644 index 00000000..40c23968 --- /dev/null +++ b/src/components/UMBE_Header.astro @@ -0,0 +1,45 @@ +
+ + +
+ + \ No newline at end of file diff --git a/src/components/UMBE_SidebarLeft.astro b/src/components/UMBE_SidebarLeft.astro new file mode 100644 index 00000000..f1a8dda2 --- /dev/null +++ b/src/components/UMBE_SidebarLeft.astro @@ -0,0 +1,9 @@ +--- +import Navigation from "../components/UMBE_navcard.astro"; +--- + +
+ + + +
\ No newline at end of file diff --git a/src/components/UMBE_SidebarRight.astro b/src/components/UMBE_SidebarRight.astro new file mode 100644 index 00000000..57b22141 --- /dev/null +++ b/src/components/UMBE_SidebarRight.astro @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/components/UMBE_navcard.astro b/src/components/UMBE_navcard.astro new file mode 100644 index 00000000..72a2214d --- /dev/null +++ b/src/components/UMBE_navcard.astro @@ -0,0 +1,100 @@ + + + +