From 08a1e00b75ecfd555a2cc438e51b42031be2e463 Mon Sep 17 00:00:00 2001 From: Dilson's Pickles Date: Tue, 14 Feb 2023 15:29:20 +0000 Subject: [PATCH] Create download page layout --- src/layouts/DownloadPageLayout.astro | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/layouts/DownloadPageLayout.astro diff --git a/src/layouts/DownloadPageLayout.astro b/src/layouts/DownloadPageLayout.astro new file mode 100644 index 0000000..a8ed19c --- /dev/null +++ b/src/layouts/DownloadPageLayout.astro @@ -0,0 +1,20 @@ +--- +import PaginationButton from "../components/PaginationButton.astro"; +import Layout from "./Layout.astro"; + +export interface Props { + title: string; +} +const { title } = Astro.props; +--- + + +
+
+

+ {title} +

+ +
+
+