aboutsummaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/slides.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/_layouts/slides.html b/_layouts/slides.html
new file mode 100644
index 0000000..db2243a
--- /dev/null
+++ b/_layouts/slides.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>{{ page.title }}</title>
+ <link rel="stylesheet" href="/slides/reveal.js/reveal.css">
+ <link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
+ {% for style in page.styles %}
+ <link rel="stylesheet" href="{{ style }}">
+ {% endfor %}
+ </head>
+ <body>
+ {{ content }}
+ <script src="/slides/reveal.js/reveal.js"></script>
+ {% for script in page.scripts %}
+ <script src="{{ script }}"></script>
+ {% endfor %}
+ </body>
+</html>