aboutsummaryrefslogtreecommitdiff
path: root/template.html
blob: 365adead4a32eb52dada1eba7c9b4d7bc047e314 (plain)
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
<!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="bar"></aside> -->
    <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>
    <ul class="build">
      <li>Bullet1</li>
      <li>Bullet2</li>
    </ul>
  </slide>

  <slide>
    <hgroup>
      <h2>Presentation Bullet Slide Layout</h2>
      <h3>Subtitle Placeholder</h3>
    </hgroup>
  </slide>

  <slide hidden>
    A hidden slide
  </slide>

  <slide>
    A Slide2
  </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>