perf: tackle lighthouse issues

This commit is contained in:
rramiachraf
2024-05-01 22:22:54 +01:00
parent 7e40892b1d
commit 59929bb891
7 changed files with 28 additions and 9 deletions

View File

@ -9,7 +9,7 @@ templ AlbumPage(a data.Album) {
@layout(fmt.Sprintf("%s - %s", a.Artist, a.Name)) {
<div id="container">
<div id="metadata">
<img id="album-artwork" src={ data.ExtractImageURL(a.Image) }/>
<img id="album-artwork" src={ data.ExtractImageURL(a.Image) } alt="Album image"/>
<h2>{ a.Artist }</h2>
<h1>{ a.Name }</h1>
</div>