diff --git a/_data/index.json b/_data/index.json index 6dc968bd3772317133f08e01cdcea9b19dc49cca..6125aa423fa076da79ab3d2af86006809723225e 100644 --- a/_data/index.json +++ b/_data/index.json @@ -1,19 +1,21 @@ { + "slides_prefix": "slides_pdf/ce810-", + "slide_types":{"Notes": "notes", "Presentation": "pres", "Handout": "handout"}, "assignments": { "Week 1": [ { "name": "Monday AM", "topic": "Recap", "links": { - "intro": "slides_pdf/ce810-intro.pres.pdf", - "slides": "slides_pdf/ce810-recap.pres.pdf" + "intro": "GEN", + "recap": "GEN" } }, { "name": "Monday PM", "topic": "Flappy Bird & Practical", "links": { - "slides": "slides_pdf/ce810-lab-paramter.pdf" + "lab-parameter": "GEN" } }, { diff --git a/_templates/index.html b/_templates/index.html index 87e4559beade553656d36d40cc65dd77d3fcb837..61ef242d2d60bd7a422ba7a1324cec27bf740908 100644 --- a/_templates/index.html +++ b/_templates/index.html @@ -20,7 +20,13 @@ <td> <ul class="list-inline"> {% for (title, link) in session.links.items() %} - <a href="{{link}}">{{title}}</a> + {% if link == "GEN" %} + {% for (pretty_name, name) in slide_types.items() %} + <a href="{{slides_prefix}}{{link}}{{name}}.pdf">{{pretty_name}}</a> + {% endfor %} + {% else %} + <a href="{{link}}">{{title}}</a> + {% endif %} {% endfor %} </ul> </td>