diff options
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/template.html b/template.html index afac672..b0e2dc6 100644 --- a/template.html +++ b/template.html | |||
@@ -25,13 +25,11 @@ URL: https://code.google.com/p/io-2012-slides | |||
25 | 25 | ||
26 | <slide class="title-slide segue nobackground"> | 26 | <slide class="title-slide segue nobackground"> |
27 | <aside class="gdbar"><img src="images/google_developers_icon_128.png"></aside> | 27 | <aside class="gdbar"><img src="images/google_developers_icon_128.png"></aside> |
28 | <!-- The content of this hgroup is replaced programmatically through the config. --> | ||
28 | <hgroup class="auto-fadein"> | 29 | <hgroup class="auto-fadein"> |
29 | <h1>Title Goes Here</h1> | 30 | <h1 data-config-title><!-- populated from config --></h1> |
30 | <h2>Subtitle Goes Here</h2> | 31 | <h2 data-config-subtitle><!-- populated from config --></h2> |
31 | <p> | 32 | <p data-config-presenter><!-- populated from config --></p> |
32 | Speaker Name<br> | ||
33 | Title | ||
34 | </p> | ||
35 | </hgroup> | 33 | </hgroup> |
36 | </slide> | 34 | </slide> |
37 | 35 | ||
@@ -87,7 +85,7 @@ URL: https://code.google.com/p/io-2012-slides | |||
87 | </ul> | 85 | </ul> |
88 | </li> | 86 | </li> |
89 | <li>Subtitle capitalization is title case</li> | 87 | <li>Subtitle capitalization is title case</li> |
90 | <li>Titles and subtitles should never have a period at the end</li> | 88 | <li>Titles and <a href="http://google.com">subtitles</a> should never have a period at the end</li> |
91 | </ul> | 89 | </ul> |
92 | </article> | 90 | </article> |
93 | </slide> | 91 | </slide> |
@@ -189,10 +187,10 @@ function helloWorld(world) { | |||
189 | <h2><Thank You!></h2> | 187 | <h2><Thank You!></h2> |
190 | <p>Important contact information goes here.</p> | 188 | <p>Important contact information goes here.</p> |
191 | </article> | 189 | </article> |
192 | <p class="auto-fadein"> | 190 | <p class="auto-fadein" data-config-contact> |
193 | Insert contact info<br> | 191 | <!--Insert contact info<br> |
194 | Insert contact info<br> | 192 | Insert contact info<br> |
195 | Insert contact info | 193 | Insert contact info--> |
196 | </p> | 194 | </p> |
197 | </slide> | 195 | </slide> |
198 | 196 | ||
@@ -208,7 +206,8 @@ function helloWorld(world) { | |||
208 | var slideConfig = { | 206 | var slideConfig = { |
209 | // Slide settings | 207 | // Slide settings |
210 | settings: { | 208 | settings: { |
211 | title: 'A Fancy Slide Deck - Google IO 2012', | 209 | title: 'Title Goes Here', |
210 | subtitle: 'Subtitle Goes Here', | ||
212 | theme: 'default', | 211 | theme: 'default', |
213 | hashtag: '#html5', //TODO | 212 | hashtag: '#html5', //TODO |
214 | useBuilds: true, | 213 | useBuilds: true, |
@@ -224,13 +223,19 @@ function helloWorld(world) { | |||
224 | }, | 223 | }, |
225 | 224 | ||
226 | // Author information | 225 | // Author information |
227 | author: [{ | 226 | presenters: [{ |
228 | name: 'Luke Mahe', | 227 | name: 'Firstname Lastname', |
229 | gplus: 'http://www.google.com' | 228 | company: 'Job Title, Google', |
230 | }, { | 229 | gplus: 'http://plus.google.com/1234567890', |
230 | twitter: '@yourhandle', | ||
231 | www: 'http://www.you.com' | ||
232 | }/*, { | ||
231 | name: 'Eric Bidelman', | 233 | name: 'Eric Bidelman', |
232 | gplus: 'http://plus.ericbidelman.com' | 234 | gplus: 'http://plus.ericbidelman.com', |
233 | }] | 235 | company: 'Senior Developer Programs Engineer, Google Chrome', |
236 | twitter: '@ebidel', | ||
237 | www: 'http://www.ericbidelman.com' | ||
238 | }*/] | ||
234 | }; | 239 | }; |
235 | </script> | 240 | </script> |
236 | 241 | ||