shanep-class 1.0.19 โ†’ 1.0.22

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/_layouts/home.html +10 -7
  3. data/_sass/style.scss +5 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec2b9af2a042426bcec19c57f046c64c95b8dff94240fb1bfb57e7234d503d93
4
- data.tar.gz: 7256f444c0d93f7d181ffa7e6253557e7a7e8df5348d9f30d4fbc23da919bee5
3
+ metadata.gz: 3ee334e991c8b2f9138fc50b265a72bc11956c0313e5124ab136fa55dfaf02c6
4
+ data.tar.gz: c8f4549566695cbefb820e666b4021dbab8e019081db589745900e00a0a92e9a
5
5
  SHA512:
6
- metadata.gz: b4be6ee7f6155c0b4fa1ff82f89955eff1d4a3c30b650dc69b47b17f2311f992c2c3cabf0728a64f615aa72b3f1c2cf66cc6d6079bc42377b0f08d48650e11c3
7
- data.tar.gz: 21267abbadd8954943c5b4edb0c5e84e438e361800b97777f537285a3c9b70d8615b3963b01ae3afcd78e960e98853bea4fc31b175e53abb4fc5863443e82043
6
+ metadata.gz: bfc731d61aefedeb3e1264f2a1f8edc2fffe4735f6174935ee21c2b6ad8122515262fb9ddfa85b9d14429a4cfc863a4a7d9ed7d9a4e34da7f0671e461c62e1f4
7
+ data.tar.gz: f0aca00c37b2a8a7730c42dda201a81ad09fa6dadc7feb0deb7bff59a6f7a865c3bc4b5d3074498ce4b183971a02cb48f990fb6135000f0c53a0fa58ffd11dc2
data/_layouts/home.html CHANGED
@@ -17,6 +17,8 @@ layout: default
17
17
  <p>
18
18
  {{tableFile.welcome-message}}
19
19
  </p>
20
+
21
+
20
22
 
21
23
  <h2 id="logistics">Logistics</h2>
22
24
 
@@ -32,6 +34,10 @@ layout: default
32
34
  <li><a href="{{tableFile.office-hours}}">Office Hours</a></li>
33
35
  <li><a href="{{tableFile.learning-objectives}}">Learning Objective Alignment Sheet</a></li>
34
36
  </ul>
37
+
38
+ <h3 id="catalog-description">Catalog description</h3>
39
+
40
+ {{tableFile.catalog}}
35
41
 
36
42
  {% assign one_day = 1 | times: 24 | times: 60 | times: 60 %}
37
43
  {% assign two_days = 2 | times: 24 | times: 60 | times: 60 %}
@@ -58,7 +64,6 @@ layout: default
58
64
  <th>Due Date</th>
59
65
  <th>Homework</th>
60
66
  <th>Points</th>
61
- <th>Lesson</th>
62
67
  </tr>
63
68
  </thead>
64
69
 
@@ -75,7 +80,7 @@ layout: default
75
80
  {% if curr_module != page.tag %}
76
81
  <!--Module header-->
77
82
  <tr>
78
- <td colspan="5" class="text-center table-darkish">{{page.tag | capitalize }}</td>
83
+ <td colspan="4" class="text-center table-darkish">{{page.tag | capitalize }}</td>
79
84
  </tr>
80
85
  {% assign curr_module = page.tag %}
81
86
  {% endif%}
@@ -92,10 +97,9 @@ layout: default
92
97
  <tr>
93
98
  {% assign curr_date = curr_date | date: "%s" | plus: two_days %}
94
99
  <td>{{curr_date | date: "%m/%d - %a"}}</td>
95
- <td><a href="{{site.url}}{{page.url}}">{{page_title}}</a>{%if page.layout == "lab"%} ๐Ÿงช {%elsif page.layout == "project" %} ๐Ÿ“ก {% endif%}</td>
100
+ <td><a href="{{site.url}}{{page.url}}">{{page_title}}</a> <span class="small-text">{{page.slug}}</span>{%if page.layout == "lab"%} ๐Ÿงช {%elsif page.layout == "project" %} ๐Ÿ“ก {% endif%}</td>
96
101
  <td>{{page.points}}</td>
97
102
  {% assign total_points = total_points | plus: page.points %}
98
- <td>{{page.slug}}</td>
99
103
  </tr>
100
104
  <tr>
101
105
  <td rowspan= 2 class="table-lightish text-center border">
@@ -128,10 +132,9 @@ layout: default
128
132
  {% endif %}
129
133
  {% assign curr_date = curr_date | date: "%s" | plus: two_days %}
130
134
  <td>{{curr_date | date: "%m/%d - %a"}}</td>
131
- <td><a href="{{site.url}}{{page.url}}">{{page_title}}</a>{%if page.layout == "lab"%} ๐Ÿงช {%elsif page.layout == "project" %} ๐Ÿ“ก {% endif%}</td>
135
+ <td><a href="{{site.url}}{{page.url}}">{{page_title}}</a> <span class="small-text">{{page.slug}}</span>{%if page.layout == "lab"%} ๐Ÿงช {%elsif page.layout == "project" %} ๐Ÿ“ก {% endif%}</td>
132
136
  <td>{{page.points}}</td>
133
137
  {% assign total_points = total_points | plus: page.points %}
134
- <td>{{page.slug}}</td>
135
138
  </tr>
136
139
  {%endif%}
137
140
  {% endif %}
@@ -139,7 +142,7 @@ layout: default
139
142
  </tbody>
140
143
  <tfoot>
141
144
  <tr>
142
- <td colspan="4" class="table-lightish">Total Points:</td>
145
+ <td colspan="3" class="table-lightish">Total Points:</td>
143
146
  <td class="table-lightish">{{total_points}}</td>
144
147
  </tr>
145
148
  </tfoot>
data/_sass/style.scss CHANGED
@@ -272,8 +272,12 @@ a.skip-main:focus, a.skip-main:active {
272
272
 
273
273
  .alert-icon{
274
274
  border-left: solid 10px;
275
- font-size: var(--s3);
275
+ font-size: var(--s3);
276
276
  padding-right: 20px;
277
277
  padding-left: 20px;
278
278
  margin: 0;
279
279
  }
280
+
281
+ .small-text {
282
+ font-size: var(--s-1);
283
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shanep-class
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.19
4
+ version: 1.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - shane panter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-29 00:00:00.000000000 Z
11
+ date: 2022-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll