my website, hosted on wisp.place
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 4a8d3f176971d2b545dfb39e74d4eaffc75d4438 21 lines 409 B view raw
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>