From ad1dc7d0d31c7811a37f522b1f922aa3db276658 Mon Sep 17 00:00:00 2001 From: Jan Beinke Date: Fri, 1 Mar 2024 00:14:56 +0100 Subject: [PATCH] Fix missing link target for publications list --- src/pages/publikationen/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/publikationen/index.astro b/src/pages/publikationen/index.astro index f94077a2..8e75bdae 100644 --- a/src/pages/publikationen/index.astro +++ b/src/pages/publikationen/index.astro @@ -18,7 +18,7 @@ const publications = await Astro.glob('@pages/publikationen/*.md') { publications.map((publication) => (
  • - {publication.frontmatter.title} + {publication.frontmatter.title}
  • )) }