index.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  6. <title>reveal.js</title>
  7. <link rel="stylesheet" href="css/reveal.css">
  8. <link rel="stylesheet" href="css/theme/black.css">
  9. <!-- Theme used for syntax highlighting of code -->
  10. <link rel="stylesheet" href="lib/css/zenburn.css">
  11. <!-- Printing and PDF exports -->
  12. <script>
  13. var link = document.createElement( 'link' );
  14. link.rel = 'stylesheet';
  15. link.type = 'text/css';
  16. link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
  17. document.getElementsByTagName( 'head' )[0].appendChild( link );
  18. </script>
  19. </head>
  20. <body>
  21. <div class="reveal">
  22. <div class="slides">
  23. <section data-timing="6">
  24. Slide 1
  25. <aside>
  26. these are not notes
  27. </aside>
  28. <aside class="notes">
  29. these are notes for the first slide
  30. </aside>
  31. </section>
  32. <section>
  33. Slide 2
  34. <aside class="notes">
  35. these are the nodes for the second slide
  36. </aside>
  37. </section>
  38. </div>
  39. </div>
  40. <script src="lib/js/head.min.js"></script>
  41. <script src="js/reveal.js"></script>
  42. <script>
  43. // More info about config & dependencies:
  44. // - https://github.com/hakimel/reveal.js#configuration
  45. // - https://github.com/hakimel/reveal.js#dependencies
  46. Reveal.initialize({
  47. dependencies: [
  48. { src: 'plugin/markdown/marked.js' },
  49. { src: 'plugin/markdown/markdown.js' },
  50. { src: 'plugin/notes/notes.js', async: true },
  51. { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
  52. ],
  53. controlsTutorial: false,
  54. defaultTiming: 3
  55. });
  56. </script>
  57. </body>
  58. </html>