-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (81 loc) · 2.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Slides</title>
<!-- Do not use user-scalable=no and don't set the maximum-scale. See
comment on accessibility at
https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag#viewport_basics.
Also see:
* https://www.a11yproject.com/posts/never-use-maximum-scale/
* https://www.w3.org/WAI/standards-guidelines/act/rules/b4f0c3/proposed/ -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="node_modules/reveal.js/dist/reset.css">
<link rel="stylesheet" href="node_modules/reveal.js/dist/reveal.css">
<link rel="stylesheet" href="theme.css">
<link rel="stylesheet" href="node_modules/reveal.js/plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown>
<textarea data-template>
# Slide template
[My website](https://jason-manuel.com) <!-- .element class="on-light-background" -->
<!-- .element class="subtitle" -->
</textarea>
</section>
<section class="title-and-body">
<h2>Slide 1</h2>
<div data-markdown class="body">
* first level
* second level
* third level
* fourth level
* fifth level
* sixth level
<!-- NOTE: further levels don't work for some reason -->
<!-- * seventh level
* eighth level
* ninth level -->
</div>
</section>
<section class="one-column-text">
<h2>Slide 2</h2>
<div data-markdown class="body">
* first level
* second level
* third level
* fourth level
* fifth level
* sixth level
[A link](https://google.com)
</div>
<div data-markdown class="column-2">
![Me](https://avatars.githubusercontent.com/u/7255867?v=4)
A paragraph here.
</div>
</section>
<section class="main-point">
<h2>Main point</h2>
</section>
<section class="title-and-body">
<h2>Code</h2>
<div class="body">
<pre>
<code data-trim data-noescape class="language-python">
# Fibonacci generator function
def fib():
a, b = 0, 1
while True:
yield a
a, b = b, a + b
</code>
</pre>
</div>
</section>
</div>
</div>
<script src="index.js" charset="utf-8" type="module"></script>
</body>
</html>