Skip to content

Commit dfa0e6a

Browse files
committed
Added alt text to the images at the footer
1 parent bf2bbae commit dfa0e6a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/o2wTemplate.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,13 @@ let make_footer srcurl depth =
157157
(Html.div ~cls:"icons"
158158
(Html.div ~cls:"icon"
159159
(Html.a ~href:(Uri.of_string "https://github.com/ocaml/opam2web")
160-
(Html.img (icon "github.png"))) (* FIXME: icon : Uri.t *)
160+
(Html.img (icon "github.png") ~alt:"Find us on GitHub")) (* FIXME: icon : Uri.t *)
161161
@ Html.div ~cls:"icon"
162162
(Html.a ~href:(Uri.of_string "http://www.ocamlpro.com/")
163-
(Html.img (icon "ocamlpro.png")))
163+
(Html.img (icon "ocamlpro.png") ~alt:"Go to OCamlPro.com"))
164164
@ Html.div ~cls:"icon"
165165
(Html.a ~href:(Uri.of_string "http://www.ocaml.org/")
166-
(Html.img (icon "ocaml.png"))))
166+
(Html.img (icon "ocaml.png") ~alt:"Go to OCaml.org")))
167167
@ Html.div ~cls:"copyright"
168168
(Html.small
169169
(Html.string "Generated " @ srcurl

0 commit comments

Comments
 (0)