Skip to content

Commit d84b3e6

Browse files
committed
corrected assessibilites iddues found on website
1 parent 1241ab6 commit d84b3e6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

themes/vocabulary_theme/templates/layout.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<!doctype html>
2+
<html lang="en"></html>
23
<meta charset="utf-8">
34
<meta name="viewport" content="width=device-width, initial-scale=1" />
45
<link rel="shortcut icon" type="image/x-icon" href="{{ '/static/favicon.ico'|url }}">
@@ -46,7 +47,7 @@
4647
<header class="container">
4748
<nav class="navbar">
4849
<div class="navbar-brand">
49-
<a class="has-text-black" href="{{ '/'|url }}">
50+
<a class="has-text-black" href="{{ '/'|url }}" aria-label="Home">
5051
<svg
5152
class="logo margin-top-small"
5253
xmlns="http://www.w3.org/2000/svg"

themes/vocabulary_theme/templates/macros/authors_gravatar.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{% if post.author|length >= 2 %}
99
<img class="profile" src="/multiple-authors.jpg" alt="multiple authors image"/>
1010
{% else %}
11-
<img class="profile" src="https://secure.gravatar.com/avatar/{{ current_author.md5_hashed_email }}?size=200&d=mp" alt="gravatar" />
11+
<img class="profile" src="https://secure.gravatar.com/avatar/{{ current_author.md5_hashed_email }}?size=200&d=mp" alt="authors gravatar" />
1212
{% endif %}
1313
</figure>
1414
</header>

0 commit comments

Comments
 (0)