mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-blog.git
synced 2026-04-02 01:54:50 +00:00
14 lines
463 B
Text
14 lines
463 B
Text
|
|
---
|
||
|
|
import BaseLayout from './BaseLayout.astro';
|
||
|
|
import '../styles/global.css'
|
||
|
|
const { frontmatter } = Astro.props;
|
||
|
|
---
|
||
|
|
<BaseLayout pageTitle={frontmatter.title}>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<h1>{frontmatter.title}</h1>
|
||
|
|
<p>{frontmatter.pubDate.toString().slice(0,10)}</p>
|
||
|
|
<p><em>{frontmatter.description}</em></p>
|
||
|
|
<p>Written by: {frontmatter.author}</p>
|
||
|
|
<img src={frontmatter.image.url} width="300" alt={frontmatter.image.alt} />
|
||
|
|
<slot />
|
||
|
|
</BaseLayout>
|