Skip to content

Commit 865c531

Browse files
committed
Publish summary lab
1 parent 13ef941 commit 865c531

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

_data/site.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"slides_light_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week1/introduction-light.pdf",
1616
"slides_dark_html": "http://htmlpreview.github.io/?https://github.com/rust-stuco/lectures/blob/main/week1/introduction-dark.html",
1717
"slides_dark_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week1/introduction-dark.pdf",
18+
"hw_name": "PrimerLab",
1819
"hw_handout": "/hw/primerlab/primerlab.zip",
1920
"hw_writeup": "/hw/primerlab/doc/primerlab/index.html",
2021
"hw_released": true,
@@ -73,6 +74,7 @@
7374
"slides_light_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week2/ownership_p1-light.pdf",
7475
"slides_dark_html": "http://htmlpreview.github.io/?https://github.com/rust-stuco/lectures/blob/main/week2/ownership_p1-dark.html",
7576
"slides_dark_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week2/ownership_p1-dark.pdf",
77+
"hw_name": "GetOwnedLab",
7678
"hw_handout": "/hw/getownedlab/getownedlab.zip",
7779
"hw_writeup": "/hw/getownedlab/doc/getownedlab/index.html",
7880
"hw_released": true,
@@ -124,6 +126,7 @@
124126
"slides_light_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week3/structs_enums-light.pdf",
125127
"slides_dark_html": "http://htmlpreview.github.io/?https://github.com/rust-stuco/lectures/blob/main/week3/structs_enums-dark.html",
126128
"slides_dark_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week3/structs_enums-dark.pdf",
129+
"hw_name": "CardLab",
127130
"hw_handout": "/hw/cardlab/cardlab.zip",
128131
"hw_writeup": "/hw/cardlab/doc/cardlab/index.html",
129132
"hw_released": true,
@@ -172,6 +175,7 @@
172175
"slides_light_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week4/collections_generics-light.pdf",
173176
"slides_dark_html": "http://htmlpreview.github.io/?https://github.com/rust-stuco/lectures/blob/main/week4/collections_generics-dark.html",
174177
"slides_dark_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week4/collections_generics-dark.pdf",
178+
"hw_name": "Multilab",
175179
"hw_handout": "/hw/multilab/multilab.zip",
176180
"hw_writeup": "/hw/multilab/doc/multilab/index.html",
177181
"hw_released": true,
@@ -215,9 +219,14 @@
215219
"slides_light_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week5/errors_traits-light.pdf",
216220
"slides_dark_html": "http://htmlpreview.github.io/?https://github.com/rust-stuco/lectures/blob/main/week5/errors_traits-dark.html",
217221
"slides_dark_pdf": "https://raw.githubusercontent.com/rust-stuco/lectures/main/week5/errors_traits-dark.pdf",
222+
"hw_name": "PokerLab",
218223
"hw_handout": "/hw/pokerlab/pokerlab.zip",
219224
"hw_writeup": "/hw/pokerlab/doc/pokerlab/index.html",
220-
"hw_released": false,
225+
"hw_released": true,
226+
"hw_ec_name": "SummaryLab",
227+
"hw_ec_handout": "/hw/summarylab/summarylab.zip",
228+
"hw_ec_writeup": "/hw/summarylab/doc/summarylab/index.html",
229+
"hw_ec_released": true,
221230
"details_released": true,
222231
"slides_released": true,
223232
"extras": [

schedule.njk

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,14 @@ eleventyNavigation:
7373
{% endif %}
7474
</td>
7575
<td>
76+
<ul>
7677
{% if entry.hw_released %}
77-
<ul>
78-
<li><a href="{{ entry.hw_handout }}">handout</a></li>
79-
<li><a href="{{ entry.hw_writeup }}">writeup</a></li>
80-
</ul>
78+
<li>{{ entry.hw_name }} <br/> (<a href="{{ entry.hw_handout }}">handout</a> / <a href="{{ entry.hw_writeup }}">writeup</a>)</li>
8179
{% endif %}
80+
{% if entry.hw_ec_released %}
81+
<li>{{ entry.hw_ec_name }} <br/> (<a href="{{ entry.hw_ec_handout }}">handout</a> / <a href="{{ entry.hw_ec_writeup }}">writeup</a>)</li>
82+
{% endif %}
83+
</ul>
8284
</td>
8385
</tr>
8486
{% endfor %}

0 commit comments

Comments
 (0)