This repository was archived by the owner on Aug 14, 2024. It is now read-only.
File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
{% comment %}
2
2
Find previous and next episodes (if any).
3
- Including file must pass episode_navbar_title=true or ...=false to display episode title.
4
3
{% endcomment %}
5
4
{% for episode in site.episodes %}
6
5
{% if episode.url == page.url %}
21
20
< div class ="col-md-1 ">
22
21
< h3 >
23
22
{% if prev_episode %}
24
- < a href ="{{ page.root }}{{ prev_episode.url }} "> < span class ="glyphicon glyphicon-menu-left "> </ span > </ a >
23
+ < a href ="{{ page.root }}{{ prev_episode.url }} "> < span class ="glyphicon glyphicon-menu-left " aria-hidden =" true " > </ span > < span class =" sr-only " > previous episode </ span > </ a >
25
24
{% else %}
26
- < a href ="{{ page.root }}/ "> < span class ="glyphicon glyphicon-menu-up "> </ span > </ a >
25
+ < a href ="{{ page.root }}/ "> < span class ="glyphicon glyphicon-menu-up " aria-hidden =" true " > </ span > < span class =" sr-only " > lesson home </ span > </ a >
27
26
{% endif %}
28
27
</ h3 >
29
28
</ div >
@@ -36,9 +35,9 @@ <h1 class="maintitle">{{ page.title }}</h1>
36
35
< div class ="col-md-1 ">
37
36
< h3 >
38
37
{% if next_episode %}
39
- < a href ="{{ page.root }}{{ next_episode.url }} "> < span class ="glyphicon glyphicon-menu-right "> </ span > </ a >
38
+ < a href ="{{ page.root }}{{ next_episode.url }} "> < span class ="glyphicon glyphicon-menu-right " aria-hidden =" true " > </ span > < span class =" sr-only " > next episode </ span > </ a >
40
39
{% else %}
41
- < a href ="{{ page.root }}/ "> < span class ="glyphicon glyphicon-menu-up "> </ span > </ a >
40
+ < a href ="{{ page.root }}/ "> < span class ="glyphicon glyphicon-menu-up " aria-hidden =" true " > </ span > < span class =" sr-only " > lesson home </ span > </ a >
42
41
{% endif %}
43
42
</ h3 >
44
43
</ div >
Original file line number Diff line number Diff line change 68
68
</ ul >
69
69
< form class ="navbar-form navbar-right " role ="search " id ="search " onsubmit ="google_search(); return false; ">
70
70
< div class ="form-group ">
71
- < input type ="text " id ="google-search " placeholder ="Search... ">
71
+ < input type ="text " id ="google-search " placeholder ="Search... " aria-label =" Google site search " >
72
72
</ div >
73
73
</ form >
74
74
</ div >
You can’t perform that action at this time.
0 commit comments