28 lines
736 B
Plaintext
28 lines
736 B
Plaintext
---
|
|
import BaseLayout from '@/layouts/BaseLayout.astro';
|
|
import PageHeaderCard from '@/components/PageHeaderCard.astro';
|
|
import { Content } from '../../source/shuoshuo/index.md';
|
|
|
|
const title = '说说';
|
|
---
|
|
|
|
<BaseLayout title={title} description="记录日常碎片和灵感的说说页面。">
|
|
<section class="content-wrap shuoshuo-page">
|
|
<PageHeaderCard title={title} subtitle="胡言乱语 ing..." />
|
|
<script is:inline>
|
|
(() => {
|
|
if (!window.btf) {
|
|
window.btf = {
|
|
snackbarShow(message) {
|
|
console.info(message);
|
|
},
|
|
};
|
|
}
|
|
})();
|
|
</script>
|
|
<div class="shuoshuo-markdown prose">
|
|
<Content />
|
|
</div>
|
|
</section>
|
|
</BaseLayout>
|