夜间模式
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
---
|
||||
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>
|
||||
Reference in New Issue
Block a user