This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
web-old/src/pages/docs.astro
2024-02-02 10:02:31 +01:00

17 lines
480 B
Plaintext

---
import Layout from "../layouts/Layout.astro";
const unsortedDocs = await Astro.glob("./docs/*/*.mdx");
const docs = unsortedDocs
.sort(
(a, b) => +new Date(b.frontmatter.date) - +new Date(a.frontmatter.date),
)
.filter((doc) => !doc.frontmatter.draft);
---
<Layout
title="Docs"
description="This is my personal website with my projects, docs and other useful stuff."
>
<main><div class="content">Docs (not finished yet)</div></main>
</Layout>