blob: 4c902ab69761cf7eae6cdb449ca13a81e6745e0a (
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" | relativize_url }}">
<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" | relativize_url }}"></script>
{% for script in page.scripts %}
<script src="{{ script }}"></script>
{% endfor %}
</body>
</html>
|