Skip to content

Commit

Permalink
Fix missing link target for publications list
Browse files Browse the repository at this point in the history
  • Loading branch information
thelegy committed Feb 29, 2024
1 parent cfe59f7 commit ad1dc7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/publikationen/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const publications = await Astro.glob('@pages/publikationen/*.md')
{
publications.map((publication) => (
<li>
<a href="">{publication.frontmatter.title}</a>
<a href={publication.url}>{publication.frontmatter.title}</a>
</li>
))
}
Expand Down

0 comments on commit ad1dc7d

Please sign in to comment.