This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
template.mustache
93 lines (68 loc) · 3.15 KB
/
template.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{title}}</title>
<link rel="stylesheet" href="vendors/revealjs/css/reveal.css">
<link rel="stylesheet" href="vendors/revealjs/css/print/reveal-like-pdf.css">
<link rel="stylesheet" href="vendors/Font-Awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="theme/style.css">
</head>
<body>
<div class="reveal">
<div class="slides">
{{{slides}}}
</div>
</div>
<script src="vendors/jquery-1.11.0.min.js"></script>
<!-- reveal -->
<script src="vendors/revealjs/lib/js/head.min.js"></script>
<script src="vendors/revealjs/js/reveal.js"></script>
<script>
Reveal.initialize({
// Display controls in the bottom right corner
controls: false,
// Display a presentation progress bar
progress: true,
// Display a subtle timer bar (time is in minutes)
timeRemaining: 15,
// Push each slide change to the browser history
history: true,
// Enable keyboard shortcuts for navigation
keyboard: true,
// Enable the slide overview mode
overview: true,
// Vertical centering of slides
center: false,
// Loop the presentation
loop: false,
// Change the presentation direction to be RTL
rtl: false,
// Number of milliseconds between automatically proceeding to the
// next slide, disabled when set to 0, this value can be overwritten
// by using a data-autoslide attribute on your slides
autoSlide: 0,
// Enable slide navigation via mouse wheel
mouseWheel: false,
// Apply a 3D roll to links on hover
rollingLinks: false,
// Transition style
transition: 'linear', // default/cube/page/concave/zoom/linear/fade/none
dependencies: [
// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/
{ src: 'vendors/revealjs/lib/js/classList.js', condition: function() { return !document.body.classList; } },
// Interreveal/pret Markdown in <section> elements
{ src: 'vendors/revealjs/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'vendors/revealjs/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); }, callback: function() { baconDemo() } },
// Syntareveal/x highlight for <code> elements
{ src: 'vendors/revealjs/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
// Zoom reveal/in and out with Alt+click
{ src: 'vendors/revealjs/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
// Speakreveal/er notes
{ src: 'vendors/revealjs/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } },
// Remotreveal/e control your reveal.js presentation using a touch device
// { src: 'reveal/plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>