From f32aa30f2f0722fb659a22ddc57cdf3bd79a4ab5 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 23 May 2025 15:07:50 +0200 Subject: Add blog pages, content and standardlayout --- src/layouts/StandardLayout.astro | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/layouts/StandardLayout.astro (limited to 'src/layouts/StandardLayout.astro') diff --git a/src/layouts/StandardLayout.astro b/src/layouts/StandardLayout.astro new file mode 100644 index 0000000..a6c9151 --- /dev/null +++ b/src/layouts/StandardLayout.astro @@ -0,0 +1,51 @@ +--- +import '../styles/global.css'; + +interface Props { + title?: string; + description?: string; +} + +const { + title = "Astro Site", + description = "A simple Astro site with blog functionality" +} = Astro.props; +--- + + + + + + + + + {title} + + +
+
+ +
+
+ +
+
+ +
+
+ + + + -- cgit v1.3.1