-
Notifications
You must be signed in to change notification settings - Fork 9
/
base.html
123 lines (108 loc) · 4.15 KB
/
base.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!--
slidedeck: A modification of the Google IO 2012 HTML5 slide template
URL: https://github.com/rmcgibbo/slidedeck
Based on https://github.com/francescolaffi/elastic-google-io-slides, and
ultimately:
Google IO 2012 HTML5 Slide Template
Authors: Eric Bidelman <ebidel@gmail.com>
Luke Mahe <lukem@google.com>
URL: https://code.google.com/p/io-2012-slides
-->
<!DOCTYPE html>
<html>
<head>
<title>{{- settings.title -}}</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">-->
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<!--This one seems to work all the time, but really small on ipad-->
<!--<meta name="viewport" content="initial-scale=0.4">-->
<meta name="apple-mobile-web-app-capable" content="yes">
{% if settings.favicon %} <link rel="shortcut icon" href="{{- settings.favicon -}}"/> {% endif %}
<link rel="stylesheet" media="all" href="theme/css/default.css">
<link rel="stylesheet" media="all" href="theme/css/custom.css">
<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="theme/css/phone.css">
<base target="_blank"> <!-- This amazingness opens all links in a new tab. -->
<script data-main="js/slides", src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js"></script>
<!-- MathJax support -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
showProcessingMessages: false,
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
TeX: {
extensions: ["color.js"]
},
"HTML-CSS": { availableFonts: ["TeX"] }
});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<div style="display:hidden">
\[
\definecolor{data}{RGB}{18,110,213}
\definecolor{unknown}{RGB}{217,86,16}
\definecolor{learned}{RGB}{175,114,176}
\]
</div>
</head>
<body style="opacity: 0">
<slides class="layout-widescreen">
<slide class="title-slide segue nobackground">
<hgroup class="auto-fadein">
<h1><img height=300 src=figures/golang.png /></h1>
<h2>{{- settings.subtitle -}}</h2>
<p>{{- settings.author -}}</p>
</hgroup>
</slide>
{% for slide in slides %}
<slide {% if slide.class %}class="{{- slide.class -}}"{% endif %} {% if slide.image %}style="background-image: url({{- slide.image -}})"{% endif %}>
{% if 'segue' in slide.class %}
<!-- <aside class="gdbar"><img src="images/google_developers_icon_128.png"></aside> -->
<hgroup class="auto-fadein">
<h2>{{- slide.title -}}</h2>
<h3>{{- slide.subtitle -}}</h3>
</hgroup>
{% else %}
<hgroup>
<h2>{{- slide.title -}}</h2>
<h3>{{- slide.subtitle -}}</h3>
</hgroup>
<article {% if slide.content_class %}class="{{- slide.content_class -}}"{% endif %}>
{{- slide.content -}}
</article>
{% endif %}
</slide>
{% endfor %}
<slide class="thank-you-slide segue nobackground">
<!-- <aside class="gdbar right"><img src="images/google_developers_icon_128.png"></aside> -->
<article class="flexbox vleft auto-fadein">
<h2>{{- settings.thankyou -}}</h2>
<p>{{- settings.thankyou_details -}}</p>
</article>
<p data-config-contact class="auto-fadein">{{- settings.contact -}}</p>
</p>
</slide>
<slide class="backdrop"></slide>
</slides>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!--[if IE]>
<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<script>CFInstall.check({mode: 'overlay'});</script>
<![endif]-->
</body>
</html>