-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.jinja2
executable file
·70 lines (56 loc) · 1.65 KB
/
index.jinja2
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{# Override default options before loading template#}
{{ options.store("html.video.controls", True) }}
{{ options.store("html.video.autoplay", True) }}
{{ options.store("html.video.loop", True) }}
{% extends "sidebar-report.html" %}
{% from 'html_support.jinja2' import play_video, show_image, smart_table, pretty_code, pretty_code_file, smart_select with context %}
{% block css %}
{{ super() }}
#main-content {
font-size: x-large;
}
pre {
background: lightgray;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
padding: 10px;
}
{% endblock %}
{% block main_header_author %}
<br>
<div style="width: 80%; text-align: center; display: inline-block;">
<div style="width: 20%; min-width: 230px; text-align: center; display: inline-block;vertical-align:middle; margin: 10px;">
Micha Livne
<br>
<a href="mailto:[email protected]">[email protected]</a>
<br>
University of Toronto
<br>
Vector Institute
</div>
<div style="width: 20%; min-width: 230px; text-align: center; display: inline-block;vertical-align:middle; margin: 10px;">
Kevin Swersky
<br>
<a href="mailto:[email protected]">[email protected]</a>
<br>
Google Research
</div>
<div style="width: 20%; min-width: 230px; text-align: center; display: inline-block;vertical-align:middle; margin: 10px;">
David J. Fleet
<br>
<a href="mailto:[email protected]">[email protected]</a>
<br>
University of Toronto
<br>
Vector Institute
</div>
</div>
{% endblock %}
{% block main_header_title %}
MIM: Mutual Information Machine
{% endblock %}
{% block main_header_date %}09/2019{% endblock %}
{% block main_content %}
{{ file_contents("README.md") }}
{% endblock %}