summaryrefslogtreecommitdiff
path: root/reveal.js/git.html
diff options
context:
space:
mode:
Diffstat (limited to 'reveal.js/git.html')
-rw-r--r--[-rwxr-xr-x]reveal.js/git.html69
1 files changed, 36 insertions, 33 deletions
diff --git a/reveal.js/git.html b/reveal.js/git.html
index 6ee3406..69e658a 100755..100644
--- a/reveal.js/git.html
+++ b/reveal.js/git.html
@@ -1,25 +1,26 @@
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>Introduction to git</title> 5 <title>Introduction to git</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.css" id="theme"> 14 <!-- <link rel="stylesheet" href="dist/theme/black.css" id="theme"/> -->
15 <link rel="stylesheet" href="dist/theme/statnett.css" id="theme"/>
15 16
16 <!-- Theme used for syntax highlighting of code --> 17 <!-- 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/monokai.css" id="highlight-theme"/>
18 <!-- <link rel="stylesheet" href="plugin/highlight/zenburn.css" id="highlight-theme"> --> 19 <!-- <link rel="stylesheet" href="plugin/highlight/zenburn.css" id="highlight-theme"/> -->
19 </head> 20 </head>
21
20 <body> 22 <body>
21 <div class="reveal"> 23 <div class="reveal">
22
23 <!-- Any section element inside of this container is displayed as a slide --> 24 <!-- Any section element inside of this container is displayed as a slide -->
24 <div class="slides"> 25 <div class="slides">
25 26
@@ -486,28 +487,30 @@
486 </div> 487 </div>
487 </div> 488 </div>
488 489
489 <script src="dist/reveal.js"></script> 490 <script src="dist/reveal.js"></script>
490 <script src="plugin/zoom/zoom.js"></script> 491 <script src="dist/plugin/zoom.js"></script>
491 <script src="plugin/notes/notes.js"></script> 492 <script src="dist/plugin/notes.js"></script>
492 <script src="plugin/search/search.js"></script> 493 <script src="dist/plugin/search.js"></script>
493 <script src="plugin/markdown/markdown.js"></script> 494 <script src="dist/plugin/markdown.js"></script>
494 <script src="plugin/highlight/highlight.js"></script> 495 <script src="dist/plugin/highlight.js"></script>
495 <script> 496 <script>
496 497 // Also available as an ES module, see: https://revealjs.com/initialization/
497 // Also available as an ES module, see: 498 // import Reveal from 'reveal.js';
498 // https://revealjs.netlify.app/initialization/ 499 // import RevealZoom from 'reveal.js/plugin/zoom';
499 Reveal.initialize({ 500 // import RevealNotes from 'reveal.js/plugin/notes';
500 controls: true, 501 // import RevealSearch from 'reveal.js/plugin/search';
501 progress: true, 502 // import RevealMarkdown from 'reveal.js/plugin/markdown';
502 center: true, 503 // import RevealHighlight from 'reveal.js/plugin/highlight';
503 hash: true,
504
505 // Learn about plugins: https://revealjs.netlify.app/plugins/
506 plugins: [ RevealZoom, RevealNotes, RevealSearch, RevealMarkdown, RevealHighlight ]
507 });
508 Reveal.configure({ pdfSeparateFragments: false });
509 504
510 </script> 505 Reveal.initialize({
506 controls: true,
507 progress: true,
508 center: true,
509 hash: true,
511 510
511 // Learn about plugins: https://revealjs.com/plugins/
512 plugins: [RevealZoom, RevealNotes, RevealSearch, RevealMarkdown, RevealHighlight],
513 });
514 </script>
512 </body> 515 </body>
513</html> 516</html>