-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (30 loc) · 934 Bytes
/
index.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
<!doctype html>
<header>
<link rel="stylesheet" href="{{ 'assets/reveal/reveal.css' | url }}" />
<link rel="stylesheet" href="{{ 'assets/reveal/theme/black.css' | url }}" />
</header>
<title>Page title</title>
<body>
<div class="reveal">
<div class="slides">
{% include "slides/01-example.html" %}
<section>
{% include "slides/02-nested.html" %} {% include
"slides/02.1-nested.html" %}
</section>
{% include "slides/03-promote.html" %}
</div>
</div>
<script src="{{ 'assets/reveal/reveal.js' | url }}"></script>
<script src="{{ 'assets/reveal/plugin/highlight/highlight.js' | url }}"></script>
<script src="{{ 'assets/reveal/plugin/notes/notes.js' | url }}"></script>
<script>
Reveal.initialize({
controls: true,
progress: true,
history: true,
slideNumber: false,
plugins: [ RevealNotes, RevealHighlight ]
});
</script>
</body>