shanep-class 1.0.25 โ 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_layouts/course.html +4 -0
- data/index.html +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f30c680158f26cf578f960da4529be4566110a528c3af47ca81430517b962ef
|
|
4
|
+
data.tar.gz: c3da2e7fa9f4400e0ec13f5cf95a168daf8c4c916964c19b077fc49a3ce6db41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52f2dfe6d874e20377f2eaa4d12ad49862c501ca651367830ce500176f42e0924d38b4b6c24b8607b9b0a5871e4aad9894758660f2a578fd1a97dd9b9da7d457
|
|
7
|
+
data.tar.gz: eaec15137137710f45d08236ef69f8374c57d65d574c8b13c20f1fd4f94f3fc9cfb4bf69c861ea9f993591c7298e43bb5fba23baf9fda1ba829861e159c8e04f
|
data/_layouts/course.html
CHANGED
|
@@ -43,6 +43,10 @@ layout: default
|
|
|
43
43
|
<h1>{%if page.title %}{{page.title}}{%else%}{{site.title}} - {{site.description}} [{{site.data.semester-info.semester}}]{% endif%}</h1>
|
|
44
44
|
{% endif %}
|
|
45
45
|
<p><span class="med-text">{{page.slug}}</span></p>
|
|
46
|
+
{% if page.video %}
|
|
47
|
+
<h2>Lesson Video</h2>
|
|
48
|
+
{% include youtube.html param=page.video %}
|
|
49
|
+
{% endif %}
|
|
46
50
|
{{content}}
|
|
47
51
|
</article>
|
|
48
52
|
{% include footer.html %}
|
data/index.html
CHANGED
|
@@ -73,7 +73,7 @@ tag: home
|
|
|
73
73
|
<tr>
|
|
74
74
|
{% assign curr_date = curr_date | date: "%s" | plus: two_days %}
|
|
75
75
|
<td>{{curr_date | date: "%m/%d - %a"}}</td>
|
|
76
|
-
<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>
|
|
76
|
+
<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%} {%if page.video %}๐บ{% endif %}</td>
|
|
77
77
|
<td>{{page.points}}</td>
|
|
78
78
|
{% assign total_points = total_points | plus: page.points %}
|
|
79
79
|
</tr>
|
|
@@ -108,7 +108,7 @@ tag: home
|
|
|
108
108
|
{% endif %}
|
|
109
109
|
{% assign curr_date = curr_date | date: "%s" | plus: two_days %}
|
|
110
110
|
<td>{{curr_date | date: "%m/%d - %a"}}</td>
|
|
111
|
-
<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>
|
|
111
|
+
<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%} {%if page.video %}๐บ{% endif %}</td>
|
|
112
112
|
<td>{{page.points}}</td>
|
|
113
113
|
{% assign total_points = total_points | plus: page.points %}
|
|
114
114
|
</tr>
|