index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <title>Git crash course</title>
  7. <style>
  8. .slides {
  9. margin-top: 5px !important;
  10. }
  11. .two-cols ul, .two-cols h3 {
  12. float: left;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div class="reveal">
  18. <div class="slides">
  19. <section data-markdown="git-crash-course.md" data-separator-vertical="^\r?\n-----\r?\n$"></section>
  20. </div>
  21. </div>
  22. <script src="js/head.min.js"></script>
  23. <script src="js/reveal.js"></script>
  24. <script src="js/jquery-3.2.1.min.js"></script>
  25. <script src="js/transition.js"></script>
  26. <script src="js/zoom.min.js"></script>
  27. <script>
  28. Reveal.initialize({
  29. width: "100%",
  30. height: "100%",
  31. margin: 0.1,
  32. minScale: 1,
  33. maxScale: 1,
  34. slideNumber: true,
  35. history: true,
  36. center: false,
  37. dependencies: [
  38. { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
  39. { src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  40. { src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  41. { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
  42. { src: 'plugin/zoom-js/zoom.js', async: true },
  43. { src: 'plugin/notes/notes.js', async: true },
  44. { src: 'plugin/math/math.js', async: true }
  45. ]
  46. });
  47. </script>
  48. </body>
  49. </html>