SanYeCao-blog/src/layouts/MarkdownPostLayout.astro

48 lines
951 B
Text
Raw Normal View History

2026-03-24 17:33:01 +00:00
---
2026-03-24 18:01:45 +00:00
import BaseLayout from "./BaseLayout.astro";
2026-03-24 18:39:50 +00:00
import Giscus from "@/components/Giscus.astro";
2026-03-24 18:01:45 +00:00
import "@/styles/global.css";
2026-03-24 17:33:01 +00:00
const { frontmatter } = Astro.props;
---
2026-03-24 18:01:45 +00:00
2026-03-24 17:33:01 +00:00
<BaseLayout pageTitle={frontmatter.title}>
<h1>{frontmatter.title}</h1>
2026-03-24 18:05:14 +00:00
<p>{frontmatter.pubDate.toLocaleDateString()}</p>
2026-03-24 17:33:01 +00:00
<p><em>{frontmatter.description}</em></p>
<p>Written by: {frontmatter.author}</p>
<img src={frontmatter.image.url} width="300" alt={frontmatter.image.alt} />
2026-03-24 18:01:45 +00:00
<div class="tags">
{
frontmatter.tags.map((tag: string) => (
<p class="tag">
<a href={`/tags/${tag}`}>{tag}</a>
</p>
))
}
</div>
2026-03-24 17:33:01 +00:00
<slot />
2026-03-24 18:39:50 +00:00
<Giscus />
2026-03-24 18:01:45 +00:00
</BaseLayout>
<style>
a {
color: #00539f;
}
.tags {
display: flex;
flex-wrap: wrap;
}
.tag {
margin: 0.25em;
border: dotted 1px #a1a1a1;
border-radius: 0.5em;
padding: 0.5em 1em;
font-size: 1.15em;
background-color: #f8fcfd;
}
</style>