forked from fghaas/presentation-template
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
98 lines (89 loc) · 3.19 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
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SUSE reveal.js sample presentation</title>
<meta charset="UTF-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- reveal.js CSS theme and local overrides -->
<link rel="stylesheet" href="reveal.js/dist/reveal.css"/>
<link rel="stylesheet" href="reveal.js/dist/theme/simple.css"/>
<link rel="stylesheet" href="reveal.js/plugin/highlight/monokai.css"/>
<link rel="stylesheet" href="css/reveal-override.css"/>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="markdown/00-meta.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:">
</section>
<section data-markdown="markdown/10-intro.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:">
</section>
<section data-markdown="markdown/20-template-slides.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:">
</section>
<section data-state="normal">
<section>
<h1>Multi-column layout</h1>
<div class="multicol">
<div class="col" data-markdown>
## first column
* one
* four is somewhat longer, wraps.
</div>
<div class="col" style="flex-grow: 2;" data-markdown>
## second column - double wide
* one
* two
This column is twice as wide as the other ones, thus
I can put a long sentence here.
</div>
<div class="col" data-markdown>
## Last column
* an item
* another item
</div>
</div>
<div>
<pre>
<code class="html">
<div class="multicol">
<div class="col">...</div>
<div class="col" style="flex-grow: 2;">...</div>
</div>
</code>
</pre>
</div>
<div data-markdown>
Used directly from `index.html`, markdown can be used by
adding the `data-markdown` attribute to the
`div` elements that contain markdown.
</div>
</section>
</section>
<section data-markdown="markdown/90-postscript.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:">
</section>
</div>
</div>
<script src="reveal.js/dist/reveal.js"></script>
<script src="reveal.js/plugin/markdown/markdown.js"></script>
<script src="reveal.js/plugin/highlight/highlight.js"></script>
<script src="reveal.js/plugin/notes/notes.js"></script>
<script src="reveal.js/plugin/zoom/zoom.js"></script>
<script src="reveal.js-menu/menu.js"></script>
<script src="js/reveal.js"></script>
<script src="qrcodejs/qrcode.js"></script>
<script src="js/qrcode.js"></script>
</body>
</html>