From 8f5278eb443864910dd9c2131c992d71e3af2d20 Mon Sep 17 00:00:00 2001 From: kartofen Date: Fri, 26 Aug 2022 23:54:17 +0300 Subject: Big bang --- src/layouts/Default.astro | 21 ++++++++++++++++++ src/layouts/Layout.astro | 56 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 src/layouts/Default.astro create mode 100644 src/layouts/Layout.astro (limited to 'src/layouts') diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro new file mode 100644 index 0000000..85fd510 --- /dev/null +++ b/src/layouts/Default.astro @@ -0,0 +1,21 @@ +--- +--- + + + + + + + + + + + + + + diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..0e3e837 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,56 @@ +--- +export interface Props { + title: string; +} + +const { title } = Astro.props as Props; +--- + + + + + + + + + {title} + + + + + + -- cgit v1.2.3