diff options
Diffstat (limited to 'reveal.js/template.html')
| -rw-r--r-- | reveal.js/template.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/reveal.js/template.html b/reveal.js/template.html new file mode 100644 index 0000000..51ba440 --- /dev/null +++ b/reveal.js/template.html | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | <head> | ||
| 4 | <meta charset="utf-8" /> | ||
| 5 | <title>Title</title> | ||
| 6 | <meta name="author" content="Simeon Simeonov"/> | ||
| 7 | <meta name="mobile-web-app-capable" content="yes"/> | ||
| 8 | <meta name="mobile-web-app-status-bar-style" content="black-translucent"/> | ||
| 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
| 10 | |||
| 11 | <link rel="stylesheet" href="dist/reset.css"/> | ||
| 12 | <link rel="stylesheet" href="dist/reveal.css"/> | ||
| 13 | |||
| 14 | <link rel="stylesheet" href="dist/theme/serif.css" id="theme"> | ||
| 15 | |||
| 16 | <!-- Theme used for syntax highlighting of code --> | ||
| 17 | <link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme"/> | ||
| 18 | <!-- <link rel="stylesheet" href="plugin/highlight/zenburn.css" id="highlight-theme"/> --> | ||
| 19 | </head> | ||
| 20 | |||
| 21 | <body> | ||
| 22 | <div class="reveal"> | ||
| 23 | <!-- Any section element inside of this container is displayed as a slide --> | ||
| 24 | <div class="slides"> | ||
| 25 | |||
| 26 | </div> | ||
| 27 | </div> | ||
| 28 | |||
| 29 | <script src="dist/reveal.js"></script> | ||
| 30 | <script src="dist/plugin/zoom.js"></script> | ||
| 31 | <script src="dist/plugin/notes.js"></script> | ||
| 32 | <script src="dist/plugin/search.js"></script> | ||
| 33 | <script src="dist/plugin/markdown.js"></script> | ||
| 34 | <script src="dist/plugin/highlight.js"></script> | ||
| 35 | <script> | ||
| 36 | // Also available as an ES module, see: https://revealjs.com/initialization/ | ||
| 37 | // import Reveal from 'reveal.js'; | ||
| 38 | // import RevealZoom from 'reveal.js/plugin/zoom'; | ||
| 39 | // import RevealNotes from 'reveal.js/plugin/notes'; | ||
| 40 | // import RevealSearch from 'reveal.js/plugin/search'; | ||
| 41 | // import RevealMarkdown from 'reveal.js/plugin/markdown'; | ||
| 42 | // import RevealHighlight from 'reveal.js/plugin/highlight'; | ||
| 43 | |||
| 44 | Reveal.initialize({ | ||
| 45 | controls: true, | ||
| 46 | progress: true, | ||
| 47 | center: true, | ||
| 48 | hash: true, | ||
| 49 | |||
| 50 | // Learn about plugins: https://revealjs.com/plugins/ | ||
| 51 | plugins: [RevealZoom, RevealNotes, RevealSearch, RevealMarkdown, RevealHighlight], | ||
| 52 | }); | ||
| 53 | </script> | ||
| 54 | </body> | ||
| 55 | </html> | ||
