2018-08-29 19:55:10 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2020-08-04 01:16:41 +02:00
|
|
|
<link rel="stylesheet" href="../_assets/reveal.js/dist/reveal.css">
|
2018-08-29 19:55:10 +02:00
|
|
|
<link rel="stylesheet" href="../_assets/reveal.js/css/print/pdf.css" media="print">
|
|
|
|
<link rel="stylesheet" href="{{ theme }}">
|
|
|
|
<link rel="stylesheet" href="../_assets/highlight.js/solarized-dark.css">
|
|
|
|
<script>
|
|
|
|
var link = document.createElement('link');
|
|
|
|
link.rel = 'stylesheet';
|
|
|
|
link.type = 'text/css';
|
|
|
|
link.href = window.location.search.match(/print-pdf/gi) ? '../_assets/reveal.js/css/print/pdf.css' : '../_assets/reveal.js/css/print/paper.css';
|
|
|
|
document.getElementsByTagName('head')[0].appendChild(link);
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="reveal">
|
|
|
|
<div class="slides">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-04 01:16:41 +02:00
|
|
|
<script type="module">
|
|
|
|
import Reveal from '../_assets/reveal.js/dist/reveal.esm.js'
|
|
|
|
import Highlight from '../_assets/reveal.js/plugin/highlight/highlight.esm.js'
|
|
|
|
import Zoom from '../_assets/reveal.js/plugin/zoom/zoom.esm.js'
|
|
|
|
import Notes from '../_assets/reveal.js/plugin/notes/notes.esm.js'
|
|
|
|
|
2018-08-29 19:55:10 +02:00
|
|
|
Reveal.initialize({
|
|
|
|
controls: {{ controls | lower }},
|
|
|
|
progress: {{ progress | lower }},
|
|
|
|
history: {{ history | lower }},
|
|
|
|
center: {{ center | lower }},
|
2018-09-21 16:22:48 +02:00
|
|
|
controlsTutorial: false,
|
2018-08-29 19:55:10 +02:00
|
|
|
|
|
|
|
showNotes: {{ show_notes | lower }},
|
|
|
|
|
|
|
|
width: {{ width }},
|
|
|
|
height: {{ height }},
|
|
|
|
|
|
|
|
transition: '{{ transition }}',
|
2020-03-04 21:38:24 +01:00
|
|
|
backgroundTransition: '{{ background_transition }}',
|
2018-08-29 19:55:10 +02:00
|
|
|
|
2020-08-04 01:16:41 +02:00
|
|
|
plugins: [ Highlight, Zoom, Notes ],
|
2018-08-29 19:55:10 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|