diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2015-02-28 20:09:43 -0500 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2015-02-28 20:09:43 -0500 |
| commit | 683cc893b0ec029e5b019e936e9c83c5c6798dac (patch) | |
| tree | 64a9a5ddce2324fb4a45ba3b17fcbe745030afe5 /index.jinja | |
| download | reading_group-683cc893b0ec029e5b019e936e9c83c5c6798dac.tar.gz | |
Initial commit
Diffstat (limited to 'index.jinja')
| -rw-r--r-- | index.jinja | 27 |
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> |
