aboutsummaryrefslogtreecommitdiff
path: root/_layouts/slides.html
blob: 47be94eacbd38c9be611266d90b8b330e8b4b0e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
{% include relBase.html %}
<html>
  <head>
    <meta charset="utf-8">
    <title>{{ page.title }}</title>
    <link rel="stylesheet" href="{{relBase}}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="{{relBase}}slides/reveal.js/reveal.js"></script>
    {% for script in page.scripts %}
      <script src="{{ script }}"></script>
    {% endfor %}
  </body>
</html>