From 8dbf3430980752ccbcd5c1a11471f5bc59b876da Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tr=C3=A9sor=20Bireke?=
Date: Thu, 23 May 2024 04:43:33 +0200
Subject: [PATCH] Add alt text to images (#2487)
This commit is the first in a series of commits
that will be aiming to make the website more
accessible.
This commit adds alt text to images on the landing
page and the header.
---
.../layouts/_header_application_links.html.erb | 3 ++-
app/views/pages/landing.html.erb | 16 ++++++++--------
2 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/app/views/layouts/_header_application_links.html.erb b/app/views/layouts/_header_application_links.html.erb
index 3f573eb14c..5ca6eea262 100644
--- a/app/views/layouts/_header_application_links.html.erb
+++ b/app/views/layouts/_header_application_links.html.erb
@@ -71,7 +71,8 @@
<%= link_to my_account_path, id: "my_account_link", class: "avatar" do %>
<%= image_tag(
gravatar_url(current_user.email, size: "30"),
- class: "avatar__image",
+ alt: "avatar image",
+ class: "avatar__image"
)%>
<% end %>
diff --git a/app/views/pages/landing.html.erb b/app/views/pages/landing.html.erb
index 99644403f6..31f30ef40a 100644
--- a/app/views/pages/landing.html.erb
+++ b/app/views/pages/landing.html.erb
@@ -28,7 +28,7 @@
receive mentorship from the best in the business.
- <%= image_tag "marketing/many-faces.png" %>
+ <%= image_tag "marketing/many-faces.png", alt: "Many faces" %>
Listen to their stories on our
@@ -81,7 +81,7 @@
<%= image_tag "marketing/conversation-upcase.png",
- class: "conversation__avatar" %>
+ class: "conversation__avatar", alt:"Upcase logo" %>
<%= image_tag "marketing/conversation-avi.png",
- class: "conversation__avatar" %>
+ class: "conversation__avatar", alt: "conversation avatar" %>
@@ -128,7 +128,7 @@
the full spectrum of skills needed to become an expert on a topic.
- <%= image_tag "marketing/follow-expert-trails.png" %>
+ <%= image_tag "marketing/follow-expert-trails.png", alt:"Trail image" %>
@@ -143,7 +143,7 @@
mobile device.
- <%= image_tag "marketing/new-videos-weekly.png" %>
+ <%= image_tag "marketing/new-videos-weekly.png", alt: "Video preview"%>
@@ -167,7 +167,7 @@