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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
</head>
<body style="opacity: 0;">
<slides>
<slide class="logoslide">
<section class="flexcenter">
<img src="images/google_developers_logo.png">
</section>
</slide>
<slide id="title-slide">
<aside class="gdbar"><img src="images/google_developers_icon_128.png"></aside>
<hgroup>
<h1>Title Goes Here</h1>
<h2>Subtitle Goes Here</h2>
<p>
Speaker Name<br>
Title
</p>
</hgroup>
</slide>
<slide>
<h2>Presentation Bullet Slide Layout</h2>
<article>
<ul>
<li>Bullet 1</li>
<li>Bullet 2
<ul>
<li>Bullet 3</li>
</ul>
</li>
<li>Bullet 4</li>
</ul>
</article>
</slide>
<slide>
<hgroup>
<h2>Presentation Bullet Slide Layout</h2>
<h3>Subtitle Placeholder</h3>
</hgroup>
<article>
A Slide2
</article>
</slide>
<slide hidden>
A hidden slide
</slide>
<!-- Slide with speaker notes. Press 'n' to display.-->
<slide>
<aside class="note">
<section>Speaker notes can go here!</section>
</aside>
<h2>Presentation Bullet Slide Layout</h2>
<article>
A Slide2
</article>
</slide>
</slides>
<script type="text/slide-config">
var slideConfig = {
// Slide settings
settings: {
title: 'A Fancy Slide Deck - Google IO 2012',
theme: 'default',
hashtag: '#html5', //TODO
useBuilds: true,
usePrettify: true, //TODO
enableSideAreas: true, //TODO
analytics: 'UA-25678279-1',
favIcon: 'http://bleedinghtml5.appspot.com/images/chrome-logo-tiny2.png',
onLoad: null, // TODO. function to call onload
fonts: [
'Open Sans:regular,semibold,italic,italicsemibold',
'Inconsolata'
]
},
// Author information
author: [{
name: 'Luke Mahe',
gplus: 'http://www.google.com'
}, {
name: 'Eric Bidelman',
gplus: 'http://plus.ericbidelman.com'
}]
};
</script>
<script src="js/slides.js"></script>
<!-- TODO: 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>
|