mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-06 05:26:39 +00:00
12 lines
392 B
Text
12 lines
392 B
Text
---
|
|
import BaseLayout from "./BaseLayout.astro";
|
|
const { frontmatter } = Astro.props;
|
|
---
|
|
|
|
<BaseLayout pageTitle={frontmatter.title}>
|
|
<p>Published on: {frontmatter.pubDate.toString().slice(0, 10)}</p>
|
|
<p><em>{frontmatter.description}</em></p>
|
|
<p>Written by: {frontmatter.author}</p>
|
|
<img src={frontmatter.image.url} alt={frontmatter.image.alt} width="500" />
|
|
<slot />
|
|
</BaseLayout>
|