-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsessions.html
39 lines (27 loc) · 863 Bytes
/
sessions.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: page
title: Past Sessions
script: /js/sessions.js
pageid: sessions
---
{% for year in site.data.sessions %}
{% assign this-year = year.yname %}
<div class="session-year {{this-year}}">
<h4 class="{{this-year}}">{{this-year}}</h4>
{% for term in year.terms %}
{% assign this-term = term[0] %}
<div class="session-term {{this-term}} {{this-year}}">
<h5 class="{{this-term}} {{this-year}}">{{this-term | capitalize}}</h5>
<ul>
{% for session in term[1] %}
{% assign person = site.data.contributors[session.author] %}
<div class="session">
<li>{% include session_info.html session=session
week=forloop.index author=person %}</li>
</div>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
{% endfor %}