Skip to content

Commit

Permalink
Fix text a11y issues (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
enmcarv authored Sep 27, 2023
1 parent 243e6cf commit 63eebb0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class=" span6 col-md-6">
<div class="branding">
<br class="hidden-xs">
<img src="/img/haskell-logo.svg" class="img-responsive">
<img src="/img/haskell-logo.svg" alt="Haskell" class="img-responsive">
<h4 class="summary">An advanced, purely functional programming language</h4>
</div>
</div>
Expand Down Expand Up @@ -87,47 +87,47 @@ <h2>Videos</h2>
<div class=" row row-flex">
<div class=" span3 col-xs-6 col-sm-3 col-md-2">
<a href="https://www.youtube.com/watch?v=re96UgMk6GQ" title="Escape from the ivory tower: The Haskell journey, by Simon Peyton-Jones" class="thumbnail">
<img src="https://i1.ytimg.com/vi/re96UgMk6GQ/mqdefault.jpg" class="img-responsive">
<img src="https://i1.ytimg.com/vi/re96UgMk6GQ/mqdefault.jpg" alt="" class="img-responsive">
<div class="caption">
<h5>Escape from the ivory tower: The Haskell journey, by Simon Peyton-Jones</h5>
</div>
</a>
</div>
<div class=" span3 col-xs-6 col-sm-3 col-md-2">
<a href="https://www.youtube.com/watch?v=lC5UWG5N8oY" title="Haskell taketh away: limiting side effects for parallel programming, by Ryan Newton" class="thumbnail">
<img src="https://i1.ytimg.com/vi/lC5UWG5N8oY/mqdefault.jpg" class="img-responsive">
<img src="https://i1.ytimg.com/vi/lC5UWG5N8oY/mqdefault.jpg" alt="" class="img-responsive">
<div class="caption">
<h5>Haskell taketh away: limiting side effects for parallel programming, by Ryan Newton</h5>
</div>
</a>
</div>
<div class=" span3 col-xs-6 col-sm-3 col-md-2">
<a href="https://www.youtube.com/watch?v=AZQLkkDXy68" title="Production Haskell, by Reid Draper" class="thumbnail">
<img src="https://i1.ytimg.com/vi/AZQLkkDXy68/mqdefault.jpg" class="img-responsive">
<img src="https://i1.ytimg.com/vi/AZQLkkDXy68/mqdefault.jpg" alt="" class="img-responsive">
<div class="caption">
<h5>Production Haskell, by Reid Draper</h5>
</div>
</a>
</div>
<div class=" span3 col-xs-6 col-sm-3 col-md-2">
<a href="https://www.youtube.com/watch?v=b9FagOVqxmI" title="Haskell Amuse-Bouche, by Mark Lentczner" class="thumbnail">
<img src="https://i1.ytimg.com/vi/b9FagOVqxmI/mqdefault.jpg" class="img-responsive">
<img src="https://i1.ytimg.com/vi/b9FagOVqxmI/mqdefault.jpg" alt="" class="img-responsive">
<div class="caption">
<h5>Haskell Amuse-Bouche, by Mark Lentczner</h5>
</div>
</a>
</div>
<div class=" span3 col-xs-6 col-sm-3 col-md-2">
<a href="https://www.youtube.com/watch?v=mlTO510zO78" title="Haskell is Not For Production and Other Tales, by Katie Miller" class="thumbnail">
<img src="https://i1.ytimg.com/vi/mlTO510zO78/mqdefault.jpg" class="img-responsive">
<img src="https://i1.ytimg.com/vi/mlTO510zO78/mqdefault.jpg" alt="" class="img-responsive">
<div class="caption">
<h5>Haskell is Not For Production and Other Tales, by Katie Miller</h5>
</div>
</a>
</div>
<div class=" span3 col-xs-6 col-sm-3 col-md-2">
<a href="https://www.youtube.com/watch?v=Orm-jIIgVD0" title="Your First Web Application with Spock, by Oskar Wickström" class="thumbnail">
<img src="https://i1.ytimg.com/vi/Orm-jIIgVD0/mqdefault.jpg" class="img-responsive">
<img src="https://i1.ytimg.com/vi/Orm-jIIgVD0/mqdefault.jpg" alt="" class="img-responsive">
<div class="caption">
<h5>Your First Web Application with Spock, by Oskar Wickström</h5>
</div>
Expand Down
2 changes: 1 addition & 1 deletion site/templates/default.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE HTML>
<html>
<html lang="en">
<head>
<title>$title$</title>
<meta charset="utf-8">
Expand Down
2 changes: 1 addition & 1 deletion site/templates/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="navbar-header">
<button data-toggle="collapse" data-target="#haskell-menu" class="navbar-toggle collapsed"><span class="sr-only"></span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
$if(isHome)$ $else$
<a href="/" class="navbar-brand"><span class="logo"><img src="/img/haskell-logo.svg"></span></a>
<a href="/" class="navbar-brand"><span class="logo"><img src="/img/haskell-logo.svg" alt="Homepage"></span></a>
$endif$
</div>
<div id="haskell-menu" class="collapse navbar-collapse">
Expand Down
2 changes: 1 addition & 1 deletion site/templates/testimonials.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class=" span3 col-xs-6 col-sm-3 testimonial-box" name="testimonial">
<div class= "thumbnail">
<a href="$companyURL$">
<img width="100px" src="./testimonials/$logoURL$" class="img responsive">
<img width="100px" src="./testimonials/$logoURL$" alt="$companyName$: Logo" class="img responsive">
</a>
<div class="testimonial-caption">
<a href="$companyURL$">
Expand Down

0 comments on commit 63eebb0

Please sign in to comment.