From d3bafe7ce03e668e680655b9105badd80281f7f1 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Mon, 14 Aug 2023 21:09:21 +0100 Subject: Defines Article layout --- src/layouts/Article.astro | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/layouts/Article.astro (limited to 'src/layouts/Article.astro') diff --git a/src/layouts/Article.astro b/src/layouts/Article.astro new file mode 100644 index 0000000..253479b --- /dev/null +++ b/src/layouts/Article.astro @@ -0,0 +1,15 @@ +--- +import Layout from './Layout.astro'; + +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + +
+ +
+
-- cgit v1.2.3