22 lines
612 B
Plaintext
22 lines
612 B
Plaintext
---
|
|
import Footer from '../../../components/Footer.astro';
|
|
import Nav from '../../../components/Nav.astro';
|
|
import CollectionSummary from '../../../components/article/CollectionSummary.astro';
|
|
import DefaultLayout from '../../../layouts/DefaultLayout.astro';
|
|
---
|
|
|
|
<DefaultLayout title="笔记 - 李守中">
|
|
<Nav />
|
|
<div class="options">
|
|
<span>当前: [按名字排序] <a href="/article/note/sort_by_timeline">按日期降序</a></span>
|
|
</div>
|
|
<CollectionSummary collectionName="note" sortedByTimeline={false}/>
|
|
<Footer />
|
|
</DefaultLayout>
|
|
|
|
<style>
|
|
.options {
|
|
margin: 1em 0 0 0;
|
|
}
|
|
</style>
|