-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (32 loc) · 1.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=1024" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Browserify</title>
<meta name="description" content="impress.js is a presentation tool based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com." />
<link href="http://fonts.googleapis.com/css?family=Open+Sans:regular,semibold,italic,italicsemibold|PT+Sans:400,700,400italic,700italic|PT+Serif:400,700,400italic,700italic|PT+Mono:400,700" rel="stylesheet" />
<link href="bower_components/impress.js/css/impress-demo.css" rel="stylesheet" />
<link href="dist/css/style.css" rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
</head>
<body>
<div id="impress" class="steps">
</div>
<script src="bower_components/jquery/jquery.min.js"></script>
<script id="step-template" type="x-underscore-template">
<div id="{{id}}" class="{{klass}}" data-x="{{data.x}}" data-y="{{data.y}}"
data-scale="{{data.scale}}" data-rotate="{{data.rotate}}">
<% if (html) {%>{{html}}<%} else {%>{{title}}{{content}}<%}%>
</div>
</script>
<script>
// First, get sorted slide list
</script>
<script src="dist/js/vendor.js"></script>
<script src="dist/js/templates.js"></script>
<script src="dist/js/main.js"></script>
</body>
</html>