mirror of
https://github.com/thiloho/aurora.git
synced 2025-11-22 11:31:36 +01:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
---
|
|
import { getEntryBySlug, getCollection } from "astro:content";
|
|
import PageLayout from "../layouts/PageLayout.astro";
|
|
import PublicationDate from "../components/PublicationDate.astro";
|
|
import TableOfContents from "../components/TableOfContents.svelte";
|
|
|
|
const home = await getEntryBySlug("home", "home");
|
|
const { Content, headings } = await home.render();
|
|
|
|
const articles = (await getCollection("blog")).sort(
|
|
(a, b) => b.data.publicationDate.valueOf() - a.data.publicationDate.valueOf()
|
|
);
|
|
---
|
|
|
|
<PageLayout {...home.data}>
|
|
<TableOfContents slot="nav" client:only="svelte" {headings} />
|
|
<Content />
|
|
{
|
|
articles.map((article) => (
|
|
<article>
|
|
<PublicationDate publicationDate={article.data.publicationDate} />
|
|
<h2>
|
|
<a href={article.slug}>{article.data.title}</a>
|
|
</h2>
|
|
<p>{article.data.description}</p>
|
|
</article>
|
|
))
|
|
}
|
|
</PageLayout>
|
|
|
|
<style>
|
|
article:not(:first-of-type) {
|
|
margin-block-start: 2rem;
|
|
padding-block-start: 2rem;
|
|
border-block-start: var(--standard-border);
|
|
}
|
|
</style>
|