-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (36 loc) · 1.44 KB
/
index.html
File metadata and controls
46 lines (36 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Code Differently Lecture Template</title>
<meta name="description" content="A lecture template for reveal.js-based CodeDifferently Lessons">
<meta name="author" content="CodeDifferently">
</head>
<body>
<div class="reveal">
<!-- Modify the `content.md` file to edit appearance of `index.html` -->
<section data-markdown="./content.md"
data-separator="^-\n-\n"
data-separator-vertical="^-\n"
data-separator-notes="^Note:"
data-charset="utf-8">
</section>
</div>
<!-- ========================================================= -->
<!-- ========================================================= -->
<!-- ------------------ Dependencies ------------------------- -->
<script src="./resources/lib/js/head.min.js"></script>
<script src="./resources/js/reveal.js"></script>
<script>
Reveal.initialize({
dependencies: [
{ src: './resources/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: './resources/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
]
});
</script>
<!-- ========================================================= -->
<!-- ========================================================= -->
<!-- --------------------------------------------------------- -->
</body>
</html>