2012-10-21 03:14:50 +02:00
|
|
|
<!doctype html>
|
2016-03-20 18:50:14 +01:00
|
|
|
<html>
|
2011-06-07 21:10:59 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2016-03-20 18:57:30 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
2012-10-21 03:14:50 +02:00
|
|
|
|
2016-03-20 18:50:14 +01:00
|
|
|
<title>reveal.js</title>
|
2012-10-21 03:14:50 +02:00
|
|
|
|
2018-11-05 08:59:19 +01:00
|
|
|
<link rel="stylesheet" href="css/reset.css">
|
2014-04-06 10:09:25 +02:00
|
|
|
<link rel="stylesheet" href="css/reveal.css">
|
2016-03-20 18:50:14 +01:00
|
|
|
<link rel="stylesheet" href="css/theme/black.css">
|
2012-08-08 07:14:12 +02:00
|
|
|
|
2016-03-20 18:57:30 +01:00
|
|
|
<!-- Theme used for syntax highlighting of code -->
|
2012-07-10 03:00:51 +02:00
|
|
|
<link rel="stylesheet" href="lib/css/zenburn.css">
|
2012-08-04 03:49:29 +02:00
|
|
|
|
2014-12-27 21:16:44 +01:00
|
|
|
<!-- Printing and PDF exports -->
|
2012-08-04 21:45:13 +02:00
|
|
|
<script>
|
2014-04-26 19:16:10 +02: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 21:45:13 +02:00
|
|
|
</script>
|
2011-06-07 21:10:59 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-06-03 23:30:37 +02:00
|
|
|
<div class="reveal">
|
2011-12-27 06:29:00 +01:00
|
|
|
<div class="slides">
|
2018-10-04 13:26:16 +02:00
|
|
|
<section>Slide 1</section>
|
|
|
|
<section>Slide 2</section>
|
2011-12-27 06:29:00 +01:00
|
|
|
</div>
|
2011-06-07 21:10:59 +02:00
|
|
|
</div>
|
2012-03-24 17:48:16 +01:00
|
|
|
|
2014-04-06 10:09:25 +02:00
|
|
|
<script src="js/reveal.js"></script>
|
2012-07-10 02:51:04 +02:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
<script>
|
2017-01-23 11:23:45 +01:00
|
|
|
// More info about config & dependencies:
|
|
|
|
// - https://github.com/hakimel/reveal.js#configuration
|
|
|
|
// - https://github.com/hakimel/reveal.js#dependencies
|
2012-08-12 02:25:55 +02:00
|
|
|
Reveal.initialize({
|
|
|
|
dependencies: [
|
2016-03-20 18:50:14 +01: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(); } }
|
2018-10-04 13:26:16 +02:00
|
|
|
]
|
2012-08-12 02:25:55 +02:00
|
|
|
});
|
2012-08-04 21:53:52 +02:00
|
|
|
</script>
|
2011-06-07 21:10:59 +02:00
|
|
|
</body>
|
2012-08-04 06:33:27 +02:00
|
|
|
</html>
|