First release.
This commit is contained in:
21
src/pages/article/note/index.astro
Normal file
21
src/pages/article/note/index.astro
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
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>
|
||||
Reference in New Issue
Block a user