forked from CampusHash/deck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.html
177 lines (142 loc) · 4.49 KB
/
presentation.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!--
CampusHash HTML Deck
-->
<!DOCTYPE html>
<html>
<head>
<title>CampusHash Events</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">
<link rel="stylesheet" media="all" href="theme/css/default.css">
<link rel="stylesheet" media="all" href="theme/css/app.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="js/require-1.0.8.min.js"></script>
</head>
<body style="opacity: 0">
<slides class="layout-widescreen">
<!-- <slide class="logoslide nobackground">
<article class="flexbox vcenter">
<span><img src="images/campushash_logo.png"></span>
</article>
</slide>
-->
<slide class="title-slide segue nobackground">
<aside class="gdbar"><img src="images/campushash_icon_128.png"></aside>
<!-- The content of this hgroup is replaced programmatically through the slide_config.json. -->
<hgroup class="auto-fadein">
<h1 data-config-title><!-- populated from slide_config.json --></h1>
<h2 data-config-subtitle><!-- populated from slide_config.json --></h2>
<p data-config-presenter><!-- populated from slide_config.json --></p>
</hgroup>
</slide>
<slide class="image" >
<hgroup>
<h2>Slide Title</h2>
<h3>Subtitle</h3>
</hgroup>
<article ><p><img alt="CampusHash" src="images/campushash_icon_128.png" /></p></article>
</slide>
<slide class="segue dark nobackground" >
<aside class="gdbar"><img src="images/campushash_icon_128.png"></aside>
<hgroup class="auto-fadein">
<h2>Special Slide</h2>
<h3>Subtitle</h3>
</hgroup>
</slide>
<slide class="big" >
<hgroup>
<h2>Elements</h2>
<h3></h3>
</hgroup>
<article ><p>This is an unordered list:</p>
<ul>
<li>Bullet1</li>
<li>Bullet2</li>
<li>Bullet3</li>
</ul>
<p>This is <strong>bold</strong>. This is <em>italic</em>.</p></article>
</slide>
<slide class="nobackground fill" >
<hgroup>
<h2>No Background</h2>
<h3></h3>
</hgroup>
<article ><p><img alt="CampusHash" src="images/campushash_icon_128.png" /></p>
<footer class="source">source: place source info here</footer></article>
</slide>
<slide class="title-slide" >
<hgroup>
<h2>Big Title Slide</h2>
<h3></h3>
</hgroup>
<article ><p>This is a title with the event branding.</p></article>
</slide>
<slide >
<hgroup>
<h2>Code Example</h2>
<h3></h3>
</hgroup>
<article ><p>Media Queries are sweet:</p>
<pre class="prettyprint" data-lang="css">
@media screen and (max-width: 640px) {
#sidebar { display: none; }
}
</pre></article>
</slide>
<slide >
<hgroup>
<h2>Once more, with JavaScript</h2>
<h3></h3>
</hgroup>
<article ><pre class="prettyprint" data-lang="javascript">
function isSmall() {
return window.matchMedia("(min-device-width: ???)").matches;
}
function hasTouch() {
return Modernizr.touch;
}
function detectFormFactor() {
var device = DESKTOP;
if (hasTouch()) {
device = isSmall() ? PHONE : TABLET;
}
return device;
}
</pre></article>
</slide>
<slide >
<hgroup>
<h2>Centered content</h2>
<h3></h3>
</hgroup>
<article class="flexbox vcenter"><p>This content should be centered!</p></article>
</slide>
<slide class="thank-you-slide segue nobackground">
<aside class="gdbar right"><img src="images/campushash_icon_128.png"></aside>
<article class="flexbox vleft auto-fadein">
<h2>That's all, folks!</h2>
<p>You have been a great audience!</p>
</article>
<p class="auto-fadein">
Shoot your questions at <strong style="color: #192959;">forum.campushash.com</strong>.
</p>
</slide>
<!-- <slide class="logoslide dark nobackground">
<article class="flexbox vcenter">
<span><img src="images/campushash_logo_white.png"></span>
</article>
</slide> -->
<slide class="backdrop"></slide>
</slides>
<!--[if IE]>
<script src="https://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<script>CFInstall.check({mode: 'overlay'});</script>
<![endif]-->
</body>
</html>