This commit is contained in:
Andras Schmelczer 2026-05-11 21:30:57 +01:00
parent f3fc893675
commit bb5b4c4cf3
43 changed files with 585 additions and 524 deletions

View file

@ -39,7 +39,11 @@ const personJsonLd = buildPersonJsonLd();
<section class="home-section">
<div class="section-heading">
<h2 id="latest-articles">Latest Articles</h2>
<a href="/articles/">All {posts.length} articles →</a>
<a href="/articles/"
>All {posts.length}
{posts.length === 1 ? 'article' : 'articles'}
<span aria-hidden="true">→</span></a
>
</div>
<ArticleList posts={latestPosts} />
</section>
@ -47,7 +51,7 @@ const personJsonLd = buildPersonJsonLd();
<section class="home-section">
<div class="section-heading">
<h2 id="home-selected-projects">Selected Projects</h2>
<a href="/projects/">All projects </a>
<a href="/projects/">All projects <span aria-hidden="true">→</span></a>
</div>
<ProjectList projects={selectedProjects} />
</section>