diff --git a/website/src/layouts/MicrologPost.astro b/website/src/layouts/MicrologPost.astro new file mode 100644 index 0000000..b5572f2 --- /dev/null +++ b/website/src/layouts/MicrologPost.astro @@ -0,0 +1,43 @@ +--- +import BaseHead from '../components/BaseHead.astro'; +import FormattedDate from '../components/FormattedDate.astro'; +import Navbar from '../components/Navbar.astro'; + +type Props = { + pubDate: Date; + title: string; +} + +const { pubDate, title } = Astro.props; + +const canonicalUrl = new URL(Astro.url.pathname, Astro.site); +--- + + + + + + + + + + + +