1
0

index.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>Autodifesa Digitale I</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. <!-- User style -->
  12. <style>
  13. .red { color: #ff2c2d; }
  14. .green { color: #17ff2e; }
  15. .blue { color: #1b91ff; }
  16. </style>
  17. <!-- Printing and PDF exports -->
  18. <script>
  19. var link = document.createElement( 'link' );
  20. link.rel = 'stylesheet';
  21. link.type = 'text/css';
  22. link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
  23. document.getElementsByTagName( 'head' )[0].appendChild( link );
  24. </script>
  25. </head>
  26. <body>
  27. <div class="reveal">
  28. <div class="slides">
  29. <section>
  30. <section
  31. data-separator="^--$"
  32. data-markdown="slides/intro.md"></section>
  33. </section>
  34. <section>
  35. <section
  36. data-separator="^--$"
  37. data-markdown="slides/password.md"></section>
  38. </section>
  39. <section>
  40. <section
  41. data-separator="^--$"
  42. data-markdown="slides/metadata.md"></section>
  43. </section>
  44. <section>
  45. <section
  46. data-separator="^--$"
  47. data-markdown="slides/smartphone.md"></section>
  48. </section>
  49. <section>
  50. <section
  51. data-separator="^--$"
  52. data-markdown="slides/comunicare.md"></section>
  53. </section>
  54. <section>
  55. <section
  56. data-separator="^--$"
  57. data-markdown="slides/navigare.md"></section>
  58. </section>
  59. <section>
  60. <section
  61. data-separator="^--$"
  62. data-markdown="slides/anonimato.md"></section>
  63. </section>
  64. </div>
  65. </div>
  66. <script src="lib/js/head.min.js"></script>
  67. <script src="js/reveal.js"></script>
  68. <script>
  69. // More info about config & dependencies:
  70. // - https://github.com/hakimel/reveal.js#configuration
  71. // - https://github.com/hakimel/reveal.js#dependencies
  72. Reveal.initialize({
  73. defaultTiming: 120,
  74. slideNumber: 'c/t',
  75. dependencies: [
  76. { src: 'plugin/markdown/marked.js' },
  77. { src: 'plugin/markdown/markdown.js' },
  78. { src: 'plugin/notes/notes.js', async: true },
  79. { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
  80. ]
  81. });
  82. </script>
  83. </body>
  84. </html>