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
|
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
</head>
<body style="display: none">
<slides>
<slide>
A Slide
</slide>
<slide>
A Slide
</slide>
<slide>
A Slide
</slide>
<slide>
A Slide
</slide>
</slides>
<script type="text/slide-config">
var slideConfig = {
// Slide settings
settings: {
title: 'A Fancy Slide Deck',
theme: 'default',
hashtag: '#html5', //TODO
useBuilds: true,
usePrettify: true, // TODO
enableSideAreas: true, //TODO
analytics: 'UA-25678279-1',
favIcon:
'http://tokyo.bleedinghtml5.appspot.com/images/chrome-logo-tiny2.png',
onLoad: null, // TODO. function to call onload
fonts: [
'Open Sans:regular,semibold,italic,italicsemibold',
'Droid Sans Mono'
]
},
// Author information
author: [{
name: 'Luke Mahe',
gplus: 'http://www.google.com'
}, {
name: 'Marcin Wichary',
gplus: 'http://www.google.com'
}, {
name: 'Eric Bidelman',
gplus: 'http://www.google.com'
}]
};
</script>
<script src="slides.js"></script>
<!-- Add to slides.js -->
<!--[if IE]>
<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<script>CFInstall.check({mode: 'overlay'});</script>
<![endif]-->
</body>
</html>
|