-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·72 lines (57 loc) · 2.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<!--
Copyright (c) 2011 Brian Cavalier
LICENSE: see the LICENSE.txt file. If file is missing, this file is subject
to the MIT License at: http://www.opensource.org/licenses/mit-license.php.
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">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<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">
<!-- Mobile viewport optimized: adapted from Modernizr and
http://stackoverflow.com/questions/2581957/iphone-safari-does-not-auto-scale-back-down-on-portrait-landscape-portrait
-->
<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>
<!-- Load curl AMD Loader -->
<script src="lib/curl.js"></script>
<!-- Start the app by configuring curl and loading modules -->
<script src="app/run.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-2012 Brian Cavalier</p>
-->
</footer>
</div>
</body>
</html>