diff options
author | Frédéric Guillot <fred@miniflux.net> | 2018-07-10 23:20:32 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2018-07-10 23:20:32 -0700 |
commit | 6fd6f79daf8a55eb97345f377d136cc320637580 (patch) | |
tree | 332856ef72b9fc387c2e963284502ea8a0a23ddb /template/html/unread_entries.html | |
parent | aceea56681a318413f0cafd63e8c7f472baae02c (diff) |
Add alt attribute for feed icons
Diffstat (limited to 'template/html/unread_entries.html')
-rw-r--r-- | template/html/unread_entries.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/html/unread_entries.html b/template/html/unread_entries.html index b23049e..74ab26a 100644 --- a/template/html/unread_entries.html +++ b/template/html/unread_entries.html @@ -24,7 +24,7 @@ <div class="item-header"> <span class="item-title"> {{ if ne .Feed.Icon.IconID 0 }} - <img src="{{ route "icon" "iconID" .Feed.Icon.IconID }}" width="16" height="16"> + <img src="{{ route "icon" "iconID" .Feed.Icon.IconID }}" width="16" height="16" alt="{{ .Feed.Title }}"> {{ end }} <a href="{{ route "unreadEntry" "entryID" .ID }}">{{ .Title }}</a> </span> |