forked from
devins.page/devins.page
my website, hosted on wisp.place
1---
2import Layout from "./Layout.astro";
3import BlogMeta from "../components/BlogMeta.astro";
4
5const { post } = Astro.props;
6const {
7 title = "",
8 description = "",
9 pubDate,
10 categories,
11 image,
12 imageAlt,
13} = post.data;
14---
15
16<Layout {title} {description}>
17 {image && <img src={image} alt={imageAlt || ""} class="floating-image" />}
18 <h1>{title}</h1>
19 <BlogMeta {pubDate} {categories} />
20 <slot />
21</Layout>