-
Notifications
You must be signed in to change notification settings - Fork 138
/
index.html
56 lines (45 loc) · 1.79 KB
/
index.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
<!DOCTYPE html>
<!--
Copyright (c) 2011-2013 Brian Cavalier
This is a basic HTML template for creating slide presentations using
the slide framework.
-->
<!-- Parts from HTML5 Boilerplate: http://html5boilerplate.com -->
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>HTML Slide Presentation Framework</title>
<meta name="description" content="HTML Slide Presentation framework">
<meta name="author" content="Brian Cavalier">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<!-- Ensure no FUOC in the slides -->
<style type="text/css">
.presentation-loading * {
visibility: hidden;
}
</style>
<script data-curl-run="app/run.js" src="bower_components/curl/src/curl.js"></script>
</head>
<!-- Avoid any FUOC by adding presentation-loading, which the framework
will remove later once the first slide is ready -->
<body class="presentation-loading">
<div>
<!-- The container to hold the slides -->
<div id="slide-container">
</div>
<!-- Extra notes -->
<footer>
<p class="slide-no-touch">Use <em>left/right arrows, or space</em> to move between slides</p>
<p class="slide-touch"><em>Swipe left or right</em> to move between slides</p>
<p>Copyright © 2011-2013 Brian Cavalier</p>
</footer>
</div>
</body>
</html>