-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·83 lines (66 loc) · 2.28 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
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<!--
Modified Copyright (c) 2012 Joachim Kudish
Original Copyright (c) 2011 Brian Cavalier
LICENSE: see the license.txt file
-->
<!-- Parts from HTML5 Boilerplate: http://html5boilerplate.com -->
<!--[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>Joachim Kudish - Vancouver WordPress Meetup</title>
<meta name="description" content="Vancouver WordPress Meetup">
<meta name="author" content="Joachim Kudish">
<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 src="js/modernizr-1.6.min.js" type="text/javascript" charset="utf-8"></script> -->
<!-- Configure RequireJS to load slides from the slides dir, and css from
the css dir. Note that these are relative to the location of require.js -->
<script type="text/javascript">
(function(global) {
global.require = {
baseUrl: "js",
paths: {
"slides": "../slides",
"css": "../css",
"wire": "./wire",
"domReady": "curl/domReady"
}
};
global.wire = {
plugins: [{ module: 'wire/dom' }],
slideContainer: { $ref: 'dom!slide-container' },
slidePath: 'slides/slides.html'
};
})(window);
</script>
<script type="text/javascript" src="js/curl.js"></script>
<script type="text/javascript">
require(['wire!slides-spec']);
</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>
<header>
</header>
<!-- The container to hold the slides -->
<div id="slide-container">
</div>
</div>
</body>
</html>