index.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="css/reveal.css">
  4. <link rel="stylesheet" href="css/zoom.css">
  5. <link rel="stylesheet" href="css/theme/white.css">
  6. <link rel="stylesheet" href="css/git-crash-course.css">
  7. <title>Git crash course</title>
  8. </head>
  9. <body>
  10. <div class="reveal">
  11. <div class="slides">
  12. <section data-markdown="git-crash-course.md" data-separator-vertical="^\r?\n-----\r?\n$"></section>
  13. </div>
  14. </div>
  15. <script src="js/head.min.js"></script>
  16. <script src="js/reveal.js"></script>
  17. <script src="js/jquery-3.2.1.min.js"></script>
  18. <script src="js/transition.js"></script>
  19. <script src="js/zoom.min.js"></script>
  20. <script>
  21. Reveal.initialize({
  22. width: "100%",
  23. height: "100%",
  24. margin: 0.1,
  25. minScale: 1,
  26. maxScale: 1,
  27. slideNumber: true,
  28. history: true,
  29. center: false,
  30. dependencies: [
  31. { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
  32. { src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  33. { src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  34. { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
  35. { src: 'plugin/zoom-js/zoom.js', async: true },
  36. { src: 'plugin/notes/notes.js', async: true },
  37. { src: 'plugin/math/math.js', async: true }
  38. ]
  39. });
  40. </script>
  41. </body>
  42. </html>