Skip to content

Commit

Permalink
Merge pull request #822 from Dev-JoyA/accessibility-issues-identified…
Browse files Browse the repository at this point in the history
…-on-website

[Accessibility]  Corrected  accessibility issues found on website
  • Loading branch information
TimidRobot authored Oct 8, 2024
2 parents 42a3e28 + 5546fcc commit b72d68e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion themes/vocabulary_theme/templates/layout.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!doctype html>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" type="image/x-icon" href="{{ '/static/favicon.ico'|url }}">
Expand Down Expand Up @@ -46,7 +47,7 @@
<header class="container">
<nav class="navbar">
<div class="navbar-brand">
<a class="has-text-black" href="{{ '/'|url }}">
<a class="has-text-black" href="{{ '/'|url }}" aria-label="Home">
<svg
class="logo margin-top-small"
xmlns="http://www.w3.org/2000/svg"
Expand Down Expand Up @@ -271,3 +272,4 @@ <h5>Our work relies on you!</h5>
</div>
</footer>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{% if post.author|length >= 2 %}
<img class="profile" src="/multiple-authors.jpg" alt="multiple authors image"/>
{% else %}
<img class="profile" src="https://secure.gravatar.com/avatar/{{ current_author.md5_hashed_email }}?size=200&d=mp" alt="gravatar" />
<img class="profile" src="https://secure.gravatar.com/avatar/{{ current_author.md5_hashed_email }}?size=200&d=mp" alt="author's gravatar" />
{% endif %}
</figure>
</header>
Expand Down

0 comments on commit b72d68e

Please sign in to comment.