First release.

This commit is contained in:
2024-06-08 23:05:48 +08:00
commit f04ca4a96b
31 changed files with 7699 additions and 0 deletions

View 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/translation/sort_by_timeline">按日期降序</a></span>
</div>
<CollectionSummary collectionName="translation" sortedByTimeline={false}/>
<Footer />
</DefaultLayout>
<style>
.options {
margin: 1em 0 0 0;
}
</style>