24 lines
786 B
Text
24 lines
786 B
Text
---
|
|
import type { CollectionEntry } from 'astro:content';
|
|
import FormattedDate from '../components/FormattedDate.astro';
|
|
import BlogContainer from '../components/BlogContainer.astro';
|
|
|
|
type Props = CollectionEntry<'blog'>['data'];
|
|
|
|
const { title, description, pubDate } = Astro.props;
|
|
---
|
|
<BlogContainer>
|
|
<main class="flex flex-col flex-1 mb-auto break-words mt-4">
|
|
<article class="flex flex-col gap-1">
|
|
<h1 class="text-4xl font-extrabold">{title}</h1>
|
|
<p class="italic">{description}</p>
|
|
<FormattedDate date={pubDate}/>
|
|
<div class="blog">
|
|
<slot />
|
|
</div>
|
|
<div class="flex items-center justify-center">
|
|
<img src="/img/jollyroger_dark.svg" id="jr" class="md:w-48 w-40" alt="My custom jolly roger"/>
|
|
</div>
|
|
</article>
|
|
</main>
|
|
</BlogContainer>
|