summaryrefslogtreecommitdiffstats
path: root/index.jinja
blob: d02098216cb41499b24842bad9951f0774666458 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name=viewport content="width=device-width, initial-scale=1">
        <title>Submodularity Reading Group</title>
        <style>
body { font-family: "Source Sans Pro", "Verdana", "Helvetica", sans-serif; color: #333; font-size: 13pt; max-width: 700px; margin: 0 auto; padding: 0 1em }
.subtext { font-size: 80%; font-weight: normal; }
a { text-decoration: none; color: #428BCA}
a:hover {text-decoration: underline; color: #2A6496}
h1 { text-align: center }
h2 { border-bottom: 1px solid #EEE; }
ul { padding-left: 0; list-style:none }
ol { padding-left: 1.5em; }
li + li { margin-top: 0.5em}
.updated { border-top: 1px solid #EEE; text-align: right; color: #777; font-style: italic; margin-top: 2em}
        </style>
    </head>
    <body>
        <h1>Submodular Optimization Reading Group<br>
            <span class="subtext">Spring 2015</span></h1>
        <p>See the <a href="https://submodular.hackpad.com/">Hackpad</a> for discussions.<p/>
        <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}}
        <p class="updated">Last updated on {{date}}</p>
    </body>
</html>