Skip to content

Commit 874c9ba

Browse files
committed
add missing alt tags on images
1 parent 58fa79f commit 874c9ba

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

blinka.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ <h2>Sort By</h2>
5050
<a href="{{ board.url | relative_url }}">
5151
<div>
5252
<div class="img-responsive-4by3">
53-
<img src="{{ board.board_image | relative_url }}">
53+
<img src="{{ board.board_image | relative_url }}" alt="Image of Board">
5454
</div>
5555
<div class="details">
5656
<h3>{{ board.name }}</h3>

downloads.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h2>Sort By</h2>
5757
{% if info.downloads_display == false %}
5858
{% continue %}
5959
{% endif %}
60-
60+
6161
<div class="download" data-id="{{ board.id }}"
6262
data-name="{{ info.name | default: board.id }}"
6363
data-downloads="{{ board.downloads }}"
@@ -66,7 +66,7 @@ <h2>Sort By</h2>
6666
<a href="{{ info.url | relative_url }}">
6767
<div>
6868
<div class="img-responsive-4by3">
69-
<img src="{{ info.board_image | relative_url }}">
69+
<img src="{{ info.board_image | relative_url }}" alt="Image of Board">
7070
</div>
7171
<div class="details">
7272
<h3>{{ info.name | default: board.id }}</h3>
@@ -92,7 +92,7 @@ <h3>{{ info.name | default: board.id }}</h3>
9292
<a href="{{ board.url | relative_url }}">
9393
<div>
9494
<div class="img-responsive-4by3">
95-
<img src="{{ board.board_image | relative_url }}">
95+
<img src="{{ board.board_image | relative_url }}" alt="Image of Board">
9696
</div>
9797
<div class="details">
9898
<h3>{{ board.name }}</h3>

0 commit comments

Comments
 (0)