diff --git a/template-page.astro b/template-page.astro new file mode 100644 index 0000000..bf4576d --- /dev/null +++ b/template-page.astro @@ -0,0 +1,65 @@ +--- +import Layout from "../layouts/Layout.astro"; +import Footer from "../components/Footer.astro"; +import Posts from "../components/Posts.astro"; + +const posts = await Astro.glob("./now/and-then/posts/*.astro"); +const page = { + title: 'New Page', + description: 'A template for a new page' +} +--- + + + + {{page.title}} + + Published on the 17th of June, 2024 + + + {{page.description}} + + + + + +
+ Published on the 17th of June, 2024 +
{{page.description}}