summaryrefslogtreecommitdiffstats
path: root/index.jinja
blob: d20e06e2f65b20f55865e0b5d6a77393cc8c79d2 (plain)
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
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Submodularity Reading Group</title>
        <link rel="stylesheet" href="custom.css">
    </head>
    <body>
        <h1>Submodular Optimization Reading Group<br>
            <span class="subtext">Spring 2015</span></h1>
        <h2>Sessions</h2>
        <ul>
            {% for session in sessions -%}
            <li><b>{{session.date}}</b> ({{session.speaker}}): {{session.summary}}. [
                {%- set pipe = joiner(", ") %}
                {%- for ref in session.refs -%}
                {{pipe()}}<a href="#{{ref}}">{{keys[ref]}}</a>
                {%- endfor -%}] {% if session.notes -%}
                [<a href="{{session.notes}}">notes</a>]
                {%- endif -%}
            </li>
            {% endfor -%}
        </ul>
        <h2>References</h2>
        {{refs}}
    </body>
</html>