diff options
Diffstat (limited to 'reveal.js/free_software.html')
| -rw-r--r-- | reveal.js/free_software.html | 66 |
1 files changed, 34 insertions, 32 deletions
diff --git a/reveal.js/free_software.html b/reveal.js/free_software.html index 71bea85..7421378 100644 --- a/reveal.js/free_software.html +++ b/reveal.js/free_software.html | |||
| @@ -1,25 +1,25 @@ | |||
| 1 | <!doctype html> | 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> | 2 | <html lang="en"> |
| 3 | <head> | 3 | <head> |
| 4 | <meta charset="utf-8"> | 4 | <meta charset="utf-8" /> |
| 5 | <title>Free software in a nutshell</title> | 5 | <title>Free software in a nutshell</title> |
| 6 | <meta name="author" content="Simeon Simeonov"> | 6 | <meta name="author" content="Simeon Simeonov"/> |
| 7 | <meta name="apple-mobile-web-app-capable" content="yes"> | 7 | <meta name="mobile-web-app-capable" content="yes"/> |
| 8 | <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> | 8 | <meta name="mobile-web-app-status-bar-style" content="black-translucent"/> |
| 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
| 10 | 10 | ||
| 11 | <link rel="stylesheet" href="dist/reset.css"> | 11 | <link rel="stylesheet" href="dist/reset.css"/> |
| 12 | <link rel="stylesheet" href="dist/reveal.css"> | 12 | <link rel="stylesheet" href="dist/reveal.css"/> |
| 13 | 13 | ||
| 14 | <link rel="stylesheet" href="dist/theme/statnett_compact.css" id="theme"> | 14 | <link rel="stylesheet" href="dist/theme/statnett_compact.css" id="theme"> |
| 15 | 15 | ||
| 16 | <!-- Theme used for syntax highlighting of code --> | 16 | <!-- Theme used for syntax highlighting of code --> |
| 17 | <link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme"> | 17 | <link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme"/> |
| 18 | <!-- <link rel="stylesheet" href="plugin/highlight/zenburn.css" id="highlight-theme"> --> | 18 | <!-- <link rel="stylesheet" href="plugin/highlight/zenburn.css" id="highlight-theme"/> --> |
| 19 | </head> | 19 | </head> |
| 20 | |||
| 20 | <body> | 21 | <body> |
| 21 | <div class="reveal"> | 22 | <div class="reveal"> |
| 22 | |||
| 23 | <!-- Any section element inside of this container is displayed as a slide --> | 23 | <!-- Any section element inside of this container is displayed as a slide --> |
| 24 | <div class="slides"> | 24 | <div class="slides"> |
| 25 | 25 | ||
| @@ -192,28 +192,30 @@ copies or substantial portions of the Software."</p> | |||
| 192 | </div> | 192 | </div> |
| 193 | </div> | 193 | </div> |
| 194 | 194 | ||
| 195 | <script src="dist/reveal.js"></script> | 195 | <script src="dist/reveal.js"></script> |
| 196 | <script src="plugin/zoom/zoom.js"></script> | 196 | <script src="dist/plugin/zoom.js"></script> |
| 197 | <script src="plugin/notes/notes.js"></script> | 197 | <script src="dist/plugin/notes.js"></script> |
| 198 | <script src="plugin/search/search.js"></script> | 198 | <script src="dist/plugin/search.js"></script> |
| 199 | <script src="plugin/markdown/markdown.js"></script> | 199 | <script src="dist/plugin/markdown.js"></script> |
| 200 | <script src="plugin/highlight/highlight.js"></script> | 200 | <script src="dist/plugin/highlight.js"></script> |
| 201 | <script> | 201 | <script> |
| 202 | 202 | // Also available as an ES module, see: https://revealjs.com/initialization/ | |
| 203 | // Also available as an ES module, see: | 203 | // import Reveal from 'reveal.js'; |
| 204 | // https://revealjs.netlify.app/initialization/ | 204 | // import RevealZoom from 'reveal.js/plugin/zoom'; |
| 205 | Reveal.initialize({ | 205 | // import RevealNotes from 'reveal.js/plugin/notes'; |
| 206 | controls: true, | 206 | // import RevealSearch from 'reveal.js/plugin/search'; |
| 207 | progress: true, | 207 | // import RevealMarkdown from 'reveal.js/plugin/markdown'; |
| 208 | center: true, | 208 | // import RevealHighlight from 'reveal.js/plugin/highlight'; |
| 209 | hash: true, | ||
| 210 | |||
| 211 | // Learn about plugins: https://revealjs.netlify.app/plugins/ | ||
| 212 | plugins: [ RevealZoom, RevealNotes, RevealSearch, RevealMarkdown, RevealHighlight ] | ||
| 213 | }); | ||
| 214 | Reveal.configure({ pdfSeparateFragments: false }); | ||
| 215 | 209 | ||
| 216 | </script> | 210 | Reveal.initialize({ |
| 211 | controls: true, | ||
| 212 | progress: true, | ||
| 213 | center: true, | ||
| 214 | hash: true, | ||
| 217 | 215 | ||
| 216 | // Learn about plugins: https://revealjs.com/plugins/ | ||
| 217 | plugins: [RevealZoom, RevealNotes, RevealSearch, RevealMarkdown, RevealHighlight], | ||
| 218 | }); | ||
| 219 | </script> | ||
| 218 | </body> | 220 | </body> |
| 219 | </html> | 221 | </html> |
