aboutsummaryrefslogtreecommitdiff
path: root/_layouts/slides.html
blob: db2243a9651b8182f45d5db8258aec9d144d410e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>