-
Notifications
You must be signed in to change notification settings - Fork 1
/
presentation.ejs
33 lines (33 loc) · 1.08 KB
/
presentation.ejs
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title><%= presentationTitle %></title>
<link rel="stylesheet" href="./node_modules/reveal.js/css/reveal.css">
<% if (printable) { %>
<link rel="stylesheet" href="./node_modules/reveal.js/css/print/pdf.css">
<% } %>
<link rel="stylesheet" href="<%= theme %>" id="theme">
<script src="./node_modules/reveal.js/lib/js/head.min.js"></script>
<script src="./node_modules/reveal.js/js/reveal.js"></script>
</head>
<body>
<div class="line top"></div>
<div class="line bottom"></div>
<div class="line left"></div>
<div class="line right"></div>
<div class="reveal">
<div class="slides">
<section data-markdown="<%= presentationFile %>"
data-separator="^(\r\n\r\n\r\n|\n\n\n)"
data-separator-vertical="^(\r\n\r\n|\n\n)"
data-separator-notes="^Note:"
data-charset="iso-8859-15">
</section>
</div>
</div>
<script>
Reveal.initialize(<%- revealOptions %>);
</script>
</body>
</html>