-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.html
37 lines (31 loc) · 1.42 KB
/
presentation.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Reveal.js presentation</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/node_modules/reveal.js/dist/reset.css">
<link rel="stylesheet" href="/node_modules/reveal.js/dist/reveal.css">
<link rel="stylesheet" href="/node_modules/reveal.js/dist/theme/white.css">
<link rel="stylesheet" href="/node_modules/reveal.js/plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section
data-markdown="presentations/<%= presentationPath %>/slides/slides.md"
data-separator="^---\n"
data-separator-vertical="^-\n"
data-notes="^Note:"
data-charset="utf-8">
</section>
</div>
</div>
<script src="/node_modules/reveal.js/plugin/markdown/markdown.js"></script>
<script src="/node_modules/reveal.js/plugin/highlight/highlight.js"></script>
<script src="/node_modules/reveal.js/dist/reveal.js"></script>
<script src="setup.js"></script>
</body>
</html>