-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (39 loc) · 1.83 KB
/
index.html
File metadata and controls
54 lines (39 loc) · 1.83 KB
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
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Angular + Jasmine</title>
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/reveal.css">
<link rel="stylesheet" href="/css/theme/beige.css" id="theme">
<link rel="stylesheet"
href="/lib/highlight.js/styles/solarized_light.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Use external markdown resource, and separate slides by three newlines; vertical slides by two newlines -->
<section data-markdown="/presentation.md" data-separator="^\n\n\n" data-vertical="^\n\n"></section>
</div>
</div>
<script src="/lib/js/head.min.js"></script>
<script src="/js/reveal.js"></script>
<script>
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme,
transition: Reveal.getQueryHash().transition || 'default',
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: '/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: '/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '/lib/highlight.js/highlight.pack.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>