Created
February 27, 2013 21:29
-
-
Save kirstein/5051906 to your computer and use it in GitHub Desktop.
reveal.js template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>reveal.js - The HTML Presentation Framework</title> | |
| <meta name="description" content="A framework for easily creating beautiful presentations using HTML"> | |
| <meta name="author" content="Mikk Kirstein"> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
| <link rel="stylesheet" href="https://rawgithub.com/hakimel/reveal.js/master/css/reveal.css"> | |
| <link rel="stylesheet" href="https://rawgithub.com/hakimel/reveal.js/master/css/theme/default.css" id="theme"> | |
| <!-- For syntax highlighting --> | |
| <link rel="stylesheet" href="https://rawgithub.com/hakimel/reveal.js/master/lib/css/zenburn.css"> | |
| <!-- If the query includes 'print-pdf', use the PDF print sheet --> | |
| <script> | |
| document.write( '<link rel="stylesheet" href="https://rawgithub.com/hakimel/reveal.js/master/css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' ); | |
| </script> | |
| <!--[if lt IE 9]> | |
| <script src="//raw.github.com/hakimel/reveal.js/master/lib/js/html5shiv.js"></script> | |
| <![endif]--> | |
| </head> | |
| <body> | |
| <div class="reveal"> | |
| <!-- Any section element inside of this container is displayed as a slide --> | |
| <div class="slides"> | |
| <!-- First slide --> | |
| <section data-markdown> | |
| <script type="text/template"> | |
| ## Page title | |
| A paragraph with some text and a [link](http://hakim.se). | |
| </script> | |
| </section> | |
| <!-- Second slide --> | |
| <section> | |
| <section data-markdown> | |
| <script type="text/template"> | |
| ## Sub page | |
| New sub | |
| </script> | |
| </section> | |
| <section>Vertical Slide 2</section> | |
| </section> | |
| </div> | |
| <script src="https://raw.github.com/hakimel/reveal.js/master/lib/js/head.min.js"></script> | |
| <script src="https://raw.github.com/hakimel/reveal.js/master/js/reveal.min.js"></script> | |
| <script> | |
| // Full list of configuration options available here: | |
| // https://github.com/hakimel/reveal.js#configuration | |
| Reveal.initialize({ | |
| controls: true, | |
| progress: true, | |
| history: true, | |
| center: true, | |
| theme: Reveal.getQueryHash().theme, // available themes are in /css/theme | |
| transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none | |
| // Optional libraries used to extend on reveal.js | |
| dependencies: [ | |
| { src: 'https://raw.github.com/hakimel/reveal.js/master/lib/js/classList.js', condition: function() { return !document.body.classList; } }, | |
| { src: 'https://raw.github.com/hakimel/reveal.js/master/plugin/markdown/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | |
| { src: 'https://raw.github.com/hakimel/reveal.js/master/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | |
| { src: 'https://raw.github.com/hakimel/reveal.js/master/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, | |
| { src: 'https://raw.github.com/hakimel/reveal.js/master/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, | |
| { src: 'https://raw.github.com/hakimel/reveal.js/master/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } } | |
| // { src: 'plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } } | |
| ] | |
| }); | |
| </script> | |
| <!-- Everything below this point is unrelated to the slideshow --> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment