mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Added alt tag for logo image on emails (#13953)
fixes: https://github.com/TryGhost/Ghost/issues/12871 - This Ghost recommended email scanner, mail-tester.com, reports not having this alt as having an impact of -0.5 out of 10 on your email score.
This commit is contained in:
parent
db7ca3dedf
commit
da799997c2
1 changed files with 1 additions and 1 deletions
|
@ -1151,7 +1151,7 @@ ${ templateSettings.showBadge ? `
|
|||
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
||||
${ templateSettings.showHeaderIcon && site.iconUrl ? `
|
||||
<tr>
|
||||
<td class="site-icon"><a href="${site.url}"><img src="${site.iconUrl}" border="0"></a></td>
|
||||
<td class="site-icon"><a href="${site.url}"><img src="${site.iconUrl}" alt="${site.title}" border="0"></a></td>
|
||||
</tr>
|
||||
` : ``}
|
||||
${ templateSettings.showHeaderTitle ? `
|
||||
|
|
Loading…
Add table
Reference in a new issue