Skip to content

Commit ae61649

Browse files
authored
Added Alt Tags to Imgs on HomePage (#6)
1 parent ff8c390 commit ae61649

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_includes/menu.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="main-menu">
44

55
<a class="navbar-brand" href="//bokeh.org" id="logo">
6-
<img src="https://static.bokeh.org/logos/logotype.svg" height="30" width="110" />
6+
<img src="https://static.bokeh.org/logos/logotype.svg" alt="Bokeh" height="30" width="110" />
77
</a>
88

99
<button class="navbar-toggler ml-auto hidden-sm-up float-xs-left" type="button" data-toggle="collapse" data-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">

_includes/scenarios.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ <h2>Common Scenarios</h2>
5454
{% else %}
5555
<div class="tab-pane" id="tab-{{ item.short }}" role="tabpanel" aria-labelledby="{{ item.short }}-tab">
5656
{% endif %}
57-
<img src="/img/{{ item.image }}" class="pb-2 scenarios-image" style="width: 400px; height: 280px" />
57+
<img src="/img/{{ item.image }}" alt="{{ item.title }}" class="pb-2 scenarios-image" style="width: 400px; height: 280px" />
5858
<div class="container-fluid">
5959
<h4>{{ item.description }}</h4>
6060
{{ item.content }}

_includes/showcase.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h2>User Showcase</h2>
1515
{% assign items = site.users | sort: 'order' %}
1616
{% for item in items %}
1717
<div class="col-lg-3 col-md-6 col-sm-6">
18-
<img src="/img/{{ item.image }}" />
18+
<img src="/img/{{ item.image }}" alt="{{ item.name }}" />
1919
</div>
2020
<div class="col-lg-3 col-md-6 col-sm-6">
2121
<h4>{{ item.name }}</h4>

0 commit comments

Comments
 (0)