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:
Tauromachian 2023-11-09 13:40:05 -05:00 committed by Sodbileg Gansukh
parent 276e2c9d01
commit cf569ac7b3

View File

@ -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}}