mirror of
https://github.com/ZetaKebab/kesper.git
synced 2025-01-14 22:18:43 +00:00
Added aria-label for the avatar/image of the author to post.hbs
no issue - Improve accessibility - Improve SEO (by improving accessibility)
This commit is contained in:
parent
276e2c9d01
commit
cf569ac7b3
6
post.hbs
6
post.hbs
@ -36,11 +36,11 @@ into the {body} tag of the default.hbs template --}}
|
||||
{{#foreach authors}}
|
||||
<li class="author-list-item">
|
||||
{{#if profile_image}}
|
||||
<a href="{{url}}" class="author-avatar">
|
||||
<a href="{{url}}" class="author-avatar" aria-label="Read more of {{name}}">
|
||||
<img class="author-profile-image" src="{{img_url profile_image size="xs"}}" alt="{{name}}" />
|
||||
</a>
|
||||
{{else}}
|
||||
<a href="{{url}}" class="author-avatar author-profile-image">{{> "icons/avatar"}}</a>
|
||||
<a href="{{url}}" class="author-avatar author-profile-image" aria-label="Read more of {{name}}">{{> "icons/avatar"}}</a>
|
||||
{{/if}}
|
||||
</li>
|
||||
{{/foreach}}
|
||||
@ -137,4 +137,4 @@ into the {body} tag of the default.hbs template --}}
|
||||
{{/get}}
|
||||
{{/if}}
|
||||
|
||||
{{/post}}
|
||||
{{/post}}
|
||||
|
Loading…
Reference in New Issue
Block a user