Update latest versions, fix small inconveniences

This commit is contained in:
thiloho
2023-09-02 14:57:44 +02:00
parent a7a1570805
commit 0a614db91e
7 changed files with 1057 additions and 1102 deletions

View File

@@ -26,5 +26,3 @@ There are three websites themes: Light, Dark and System (inherits the theme of y
### Make the theme yours
See the [documentation on how to adjust the theme](https://github.com/thiloho/aurora#make-the-theme-yours).
## Blog

2
src/env.d.ts vendored
View File

@@ -1,2 +1,2 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client-image" />
/// <reference types="astro/client" />

View File

@@ -14,6 +14,9 @@ const articles = (await getCollection("blog")).sort(
<PageLayout title="aurora" description="Minimalistic blog theme built with Astro, focused on accessibility and usability.">
<Content />
<h2 id="blog">
<a class="heading-linker" href="#blog">Blog</a>
</h2>
<div class="article-grid">
{
articles.map((article) => (
@@ -23,9 +26,9 @@ const articles = (await getCollection("blog")).sort(
</header>
<div class="article-content">
<PublicationDate publicationDate={article.data.publicationDate} />
<h2>
<h3>
<a href={article.slug}>{article.data.title}</a>
</h2>
</h3>
<p>{article.data.description}</p>
</div>
</article>