This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 2.72 KB
/
index.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
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Fall 2023 ReDI Berlin JavaScript course</title>
<link rel="stylesheet" href="https://unpkg.com/reveal.js@^4/dist/reset.css"/>
<link rel="stylesheet" href="https://unpkg.com/reveal.js@^4/dist/reveal.css"/>
<link rel="stylesheet" href="https://unpkg.com/reveal.js@^4/dist/theme/black.css"/>
<link rel="stylesheet" href="https://unpkg.com/highlight.js/styles/vs2015.css" id="highlight-theme"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="toc.md" data-charset="utf-8"></section>
<section data-markdown="lesson01.md" data-charset="utf-8"></section>
<section data-markdown="lesson02.md" data-charset="utf-8"></section>
<section data-markdown="lesson03.md" data-charset="utf-8"></section>
<section data-markdown="lesson04.md" data-charset="utf-8"></section>
<section data-markdown="lesson05.md" data-charset="utf-8"></section>
<section data-markdown="lesson06.md" data-charset="utf-8"></section>
<section data-markdown="lesson07.md" data-charset="utf-8"></section>
<section data-markdown="lesson08.md" data-charset="utf-8"></section>
<section data-markdown="lesson09.md" data-charset="utf-8"></section>
<section data-markdown="lesson10.md" data-charset="utf-8"></section>
<section data-markdown="lesson11.md" data-charset="utf-8"></section>
<section data-markdown="lesson12.md" data-charset="utf-8"></section>
<section data-markdown="lesson13.md" data-charset="utf-8"></section>
<section data-markdown="lesson14.md" data-charset="utf-8"></section>
<section data-markdown="lesson15.md" data-charset="utf-8"></section>
<section data-markdown="lesson16.md" data-charset="utf-8"></section>
<section data-markdown="lesson17.md" data-charset="utf-8"></section>
<!-- NEW_SECTION_HERE -->
</div>
</div>
<script src="https://unpkg.com/reveal.js@^4/dist/reveal.js"></script>
<script src="https://unpkg.com/reveal.js@^4/plugin/markdown/markdown.js"></script>
<script src="https://unpkg.com/reveal.js@^4/plugin/highlight/highlight.js"></script>
<script src="https://unpkg.com/reveal.js@^4/plugin/zoom/zoom.js"></script>
<script src="https://unpkg.com/reveal.js@^4/plugin/search/search.js"></script>
<script>
Reveal.initialize({
slideNumber: true,
hash: true,
controlsTutorial: false,
plugins: [RevealMarkdown, RevealHighlight, RevealZoom, RevealSearch]
});
</script>
</body>
</html>