summaryrefslogtreecommitdiffstats
path: root/index.jinja
diff options
context:
space:
mode:
Diffstat (limited to 'index.jinja')
-rw-r--r--index.jinja27
1 files changed, 27 insertions, 0 deletions
diff --git a/index.jinja b/index.jinja
new file mode 100644
index 0000000..8ffda73
--- /dev/null
+++ b/index.jinja
@@ -0,0 +1,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>