-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.html
47 lines (47 loc) · 1.8 KB
/
template.html
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
<html>
<head>
<meta charset="utf-8">
<title>Template</title>
<link rel="stylesheet" href="./dist/css/reveal.css">
<link rel="stylesheet" href="./dist/css/redbrick.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? './dist/css/pdf.css' : './dist/css/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body data-bg-text="Pictures are being taken to be used on social media">
<div class="reveal">
<div class="slides">
<section data-markdown>
<script type='text/template'>
</script>
</section>
<section data-markdown>
<script type='text/template'>
</script>
</section>
</div>
</div>
<script src="./dist/js/reveal.js"></script>
<script src="./dist/js/head.min.js"></script>
<script type="text/javascript" src="//use.typekit.net/nts0xzw.js"></script>
<script>
Reveal.initialize({
controls: true,
mouseWheel: true,
dependencies: [
{ src: './dist/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: './dist/js//marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: './dist/js/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: './dist/js/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: './dist/js/zoom.js', async: true },
{ src: './dist/js/notes.js', async: true }
]
});
</script>
</body>
</html>