From 5451a1dadf1640d159c363c33ccc33475a506f02 Mon Sep 17 00:00:00 2001 From: Solomon Victorino Date: Wed, 8 May 2024 22:22:06 -0600 Subject: [PATCH] fix: improve alt text empty for decorative images, describe links --- views/album.templ | 2 +- views/lyrics.templ | 4 ++-- views/navbar.templ | 2 +- views/search.templ | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/views/album.templ b/views/album.templ index 1e6d9c6..8073fe9 100644 --- a/views/album.templ +++ b/views/album.templ @@ -9,7 +9,7 @@ templ AlbumPage(a data.Album) { @layout(fmt.Sprintf("%s - %s", a.Artist, a.Name)) {
- Album image +

{ a.Artist }

{ a.Name }

diff --git a/views/lyrics.templ b/views/lyrics.templ index 6fd35e2..479d950 100644 --- a/views/lyrics.templ +++ b/views/lyrics.templ @@ -12,7 +12,7 @@ templ LyricsPage(s data.Song) { Song image

{ s.Artist }

@@ -49,7 +49,7 @@ templ LyricsPage(s data.Song) { title={ "Album: " + s.Album.Name } id="album-artwork" src={ s.Album.Image } - alt="Album image" + alt="Album page" />
diff --git a/views/navbar.templ b/views/navbar.templ index a8b6d4e..dca651a 100644 --- a/views/navbar.templ +++ b/views/navbar.templ @@ -3,7 +3,7 @@ package views templ navbar() {