@@ -14,8 +14,8 @@ <h2 id="schedule">Schedule</h2>
14
14
15
15
< table class ="table table-striped ">
16
16
< tr >
17
- < td class ="col-md-1 "> </ td >
18
- < td class ="col-md-1 "> </ td >
17
+ {% if multiday %} < td class ="col-md-1 "> </ td > {% endif %}
18
+ < td class ="{% if multiday %} col-md-1{% else %}col-md-2{% endif %} "> </ td >
19
19
< td class ="col-md-3 "> < a href ="{{ page.root }}/setup "> Setup</ a > </ td >
20
20
< td class ="col-md-7 "> Dowload files used on the lesson.</ td >
21
21
</ tr >
@@ -26,8 +26,8 @@ <h2 id="schedule">Schedule</h2>
26
26
{% assign hours = current | divided_by: 60 %}
27
27
{% assign minutes = current | modulo: 60 %}
28
28
< tr >
29
- {% if multiday %}< td > </ td > {% endif %}
30
- < td class ="col-md-1 "> {% if hours < 10 %}0{% endif %}{{ hours }}:{% if minutes < 10 %}0{% endif %}{{ minutes }} </ td >
29
+ {% if multiday %}< td class =" col-md-1 " > </ td > {% endif %}
30
+ < td class ="{% if multiday %} col-md-1{% else %}col-md-2{% endif %} "> {% if hours < 10 %}0{% endif %}{{ hours }}:{% if minutes < 10 %}0{% endif %}{{ minutes }} </ td >
31
31
< td class ="col-md-3 "> Finish</ td >
32
32
< td class ="col-md-7 "> </ td >
33
33
</ tr >
@@ -38,7 +38,7 @@ <h2 id="schedule">Schedule</h2>
38
38
{% assign minutes = current | modulo: 60 %}
39
39
< tr >
40
40
{% if multiday %}< td class ="col-md-1 "> {% if episode.start %}Day {{ day }}{% endif %}</ td > {% endif %}
41
- < td class ="col-md-1 "> {% if hours < 10 %}0{% endif %}{{ hours }}:{% if minutes < 10 %}0{% endif %}{{ minutes }} </ td >
41
+ < td class ="{% if multiday %} col-md-1{% else %}col-md-2{% endif %} "> {% if hours < 10 %}0{% endif %}{{ hours }}:{% if minutes < 10 %}0{% endif %}{{ minutes }} </ td >
42
42
< td class ="col-md-3 ">
43
43
< a href ="{{ page.root }}{{ episode.url }} "> {{ episode.title }}</ a >
44
44
</ td >
@@ -62,8 +62,8 @@ <h2 id="schedule">Schedule</h2>
62
62
{% assign hours = current | divided_by: 60 %}
63
63
{% assign minutes = current | modulo: 60 %}
64
64
< tr >
65
- {% if multiday %}< td > </ td > {% endif %}
66
- < td class ="col-md-1 "> {% if hours < 10 %}0{% endif %}{{ hours }}:{% if minutes < 10 %}0{% endif %}{{ minutes }} </ td >
65
+ {% if multiday %}< td class =" col-md-1 " > </ td > {% endif %}
66
+ < td class ="{% if multiday %} col-md-1{% else %}col-md-2{% endif %} "> {% if hours < 10 %}0{% endif %}{{ hours }}:{% if minutes < 10 %}0{% endif %}{{ minutes }} </ td >
67
67
< td class ="col-md-3 "> Finish</ td >
68
68
< td class ="col-md-7 "> </ td >
69
69
</ tr >
0 commit comments