-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.revealjs
62 lines (46 loc) · 1.77 KB
/
template.revealjs
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Geographic Data Science in Python</title>
<meta name="description" content="Geographic Data Science in Python">
<meta name="author" content="Dani Arribas-Bel">
<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="../revealjs/css/reset.css">
<link rel="stylesheet" href="../revealjs/css/reveal.css">
<link rel="stylesheet" href="../revealjs/css/theme/journal.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../revealjs/plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<!-- BODY -->
<div class="reveal">
<div class="slides">
$body$
</div>
</div>
<!-- DEPENDENCIES -->
<script src="../revealjs/js/reveal.js"></script>
<script src="../revealjs/plugin/zoom-js/zoom.js"></script>
<script src="../revealjs/plugin/notes/notes.js"></script>
<script src="../revealjs/plugin/search/search.js"></script>
<script src="../revealjs/plugin/markdown/marked.js"></script>
<script src="../revealjs/plugin/markdown/markdown.js"></script>
<script src="../revealjs/plugin/highlight/highlight.js"></script>
<script>
// Also available as an ES module, see:
// https://revealjs.com/initialization/
Reveal.initialize({
controls: true,
controlsTutorial: false,
progress: true,
center: true,
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealZoom, RevealNotes, RevealSearch, RevealMarkdown, RevealHighlight ]
});
</script>
</body>
</html>