2012-10-21 01:14:50 +00:00
|
|
|
<!doctype html>
|
2016-03-20 17:50:14 +00:00
|
|
|
<html>
|
2011-06-07 19:10:59 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2016-03-20 17:57:30 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
2012-10-21 01:14:50 +00:00
|
|
|
|
2016-03-20 17:50:14 +00:00
|
|
|
<title>reveal.js</title>
|
2012-10-21 01:14:50 +00:00
|
|
|
|
2014-04-06 08:09:25 +00:00
|
|
|
<link rel="stylesheet" href="css/reveal.css">
|
2016-03-20 17:50:14 +00:00
|
|
|
<link rel="stylesheet" href="css/theme/black.css">
|
2012-08-08 05:14:12 +00:00
|
|
|
|
2016-03-20 17:57:30 +00:00
|
|
|
<!-- Theme used for syntax highlighting of code -->
|
2012-07-10 01:00:51 +00:00
|
|
|
<link rel="stylesheet" href="lib/css/zenburn.css">
|
2012-08-04 01:49:29 +00:00
|
|
|
|
2014-12-27 20:16:44 +00:00
|
|
|
<!-- Printing and PDF exports -->
|
2012-08-04 19:45:13 +00:00
|
|
|
<script>
|
2014-04-26 17:16:10 +00:00
|
|
|
var link = document.createElement( 'link' );
|
|
|
|
link.rel = 'stylesheet';
|
|
|
|
link.type = 'text/css';
|
|
|
|
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
|
|
|
|
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
2012-08-04 19:45:13 +00:00
|
|
|
</script>
|
2011-06-07 19:10:59 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-06-03 21:30:37 +00:00
|
|
|
<div class="reveal">
|
2011-12-27 05:29:00 +00:00
|
|
|
<div class="slides">
|
2016-03-20 17:50:14 +00:00
|
|
|
<section>Slide 1</section>
|
|
|
|
<section>Slide 2</section>
|
2011-12-27 05:29:00 +00:00
|
|
|
</div>
|
2011-06-07 19:10:59 +00:00
|
|
|
</div>
|
2012-03-24 16:48:16 +00:00
|
|
|
|
2012-07-10 01:00:51 +00:00
|
|
|
<script src="lib/js/head.min.js"></script>
|
2014-04-06 08:09:25 +00:00
|
|
|
<script src="js/reveal.js"></script>
|
2012-07-10 00:51:04 +00:00
|
|
|
|
2011-12-05 02:07:33 +00:00
|
|
|
<script>
|
2017-01-23 10:23:45 +00:00
|
|
|
// More info about config & dependencies:
|
|
|
|
// - https://github.com/hakimel/reveal.js#configuration
|
|
|
|
// - https://github.com/hakimel/reveal.js#dependencies
|
2012-08-12 00:25:55 +00:00
|
|
|
Reveal.initialize({
|
|
|
|
dependencies: [
|
2016-03-20 17:50:14 +00:00
|
|
|
{ src: 'plugin/markdown/marked.js' },
|
|
|
|
{ src: 'plugin/markdown/markdown.js' },
|
|
|
|
{ src: 'plugin/notes/notes.js', async: true },
|
|
|
|
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
|
2012-08-12 00:25:55 +00:00
|
|
|
]
|
|
|
|
});
|
2012-08-04 19:53:52 +00:00
|
|
|
</script>
|
2011-06-07 19:10:59 +00:00
|
|
|
</body>
|
2012-08-04 04:33:27 +00:00
|
|
|
</html>
|