blob: 8ffda731e515c356d433a0f652d531a23f8181d9 (
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>{{session.date}} ({{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>
|