diff options
author | Luke | 2012-03-29 15:45:09 +1100 |
---|---|---|
committer | Luke | 2012-03-29 15:45:09 +1100 |
commit | 06b4740ef7d0aecc01f325ca8c7d21679877c274 (patch) | |
tree | 4f8122253fcd1645dbc68f7503f78cbffaacedc6 /template.html | |
download | io-slides-remote-06b4740ef7d0aecc01f325ca8c7d21679877c274.tar.gz |
adding inital code
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/template.html b/template.html new file mode 100644 index 0000000..74220cc --- /dev/null +++ b/template.html | |||
@@ -0,0 +1,69 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <title>Title</title> | ||
5 | <meta charset="utf-8"> | ||
6 | <meta http-equiv="X-UA-Compatible" content="chrome=1"> | ||
7 | </head> | ||
8 | <body style="display: none"> | ||
9 | <slides> | ||
10 | <slide> | ||
11 | A Slide | ||
12 | </slide> | ||
13 | |||
14 | <slide> | ||
15 | A Slide | ||
16 | </slide> | ||
17 | |||
18 | <slide> | ||
19 | A Slide | ||
20 | </slide> | ||
21 | |||
22 | <slide> | ||
23 | A Slide | ||
24 | </slide> | ||
25 | </slides> | ||
26 | |||
27 | <script type="text/slide-config"> | ||
28 | var slideConfig = { | ||
29 | // Slide settings | ||
30 | settings: { | ||
31 | title: 'A Fancy Slide Deck', | ||
32 | theme: 'default', | ||
33 | hashtag: '#html5', //TODO | ||
34 | useBuilds: true, | ||
35 | usePrettify: true, // TODO | ||
36 | enableSideAreas: true, //TODO | ||
37 | analytics: 'UA-25678279-1', | ||
38 | favIcon: | ||
39 | 'http://tokyo.bleedinghtml5.appspot.com/images/chrome-logo-tiny2.png', | ||
40 | onLoad: null, // TODO. function to call onload | ||
41 | fonts: [ | ||
42 | 'Open Sans:regular,semibold,italic,italicsemibold', | ||
43 | 'Droid Sans Mono' | ||
44 | ] | ||
45 | }, | ||
46 | |||
47 | // Author information | ||
48 | author: [{ | ||
49 | name: 'Luke Mahe', | ||
50 | gplus: 'http://www.google.com' | ||
51 | }, { | ||
52 | name: 'Marcin Wichary', | ||
53 | gplus: 'http://www.google.com' | ||
54 | }, { | ||
55 | name: 'Eric Bidelman', | ||
56 | gplus: 'http://www.google.com' | ||
57 | }] | ||
58 | }; | ||
59 | </script> | ||
60 | |||
61 | <script src="slides.js"></script> | ||
62 | |||
63 | <!-- Add to slides.js --> | ||
64 | <!--[if IE]> | ||
65 | <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> | ||
66 | <script>CFInstall.check({mode: 'overlay'});</script> | ||
67 | <![endif]--> | ||
68 | </body> | ||
69 | </html> | ||