-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (85 loc) · 3.75 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
99
100
101
102
103
104
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Get interactive! </title>
<meta charset="UTF-8" />
<meta name="generator" content="Cookiecutter (from gh:fghaas/cookiecutter-presentation)" />
<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" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Get interactive! " />
<meta property="og:description" content="This is a presentation from DjangoCon US 2021, on using Guacamole to embed a terminal or desktop console into any Django application." />
<!-- reveal.js CSS theme and local overrides -->
<link rel="stylesheet" href="reveal.js/dist/reveal.css"/>
<link rel="stylesheet" href="reveal.js/dist/theme/white.css" id="theme"/>
<link rel="stylesheet" href="css/reveal-override.css"/>
<!-- For syntax highlighting -->
<link rel="stylesheet" href="highlight.js/src/styles/a11y-light.css" />
<!-- For JavaScript-generated QR codes -->
<link rel="stylesheet" href="css/qrcode.css" />
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Repeat these as often as needed -->
<section id="intro"
data-markdown="markdown/00-intro.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="<!-- Note -->">
</section>
<section id="what"
data-markdown="markdown/01-what.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="<!-- Note -->">
</section>
<section id="guac"
data-markdown="markdown/02-guac.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="<!-- Note -->">
</section>
<section id="pyguac"
data-markdown="markdown/03-pyguac.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="<!-- Note -->">
</section>
<section id="alltogether"
data-markdown="markdown/04-alltogether.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="<!-- Note -->">
</section>
<section id="code"
data-markdown="markdown/05-code.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="<!-- Note -->">
</section>
<section id="credits"
data-markdown="markdown/06-credits.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="<!-- Note -->">
</section>
<section id="close"
data-markdown="markdown/00-intro.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="reveal-config.js"></script>
<script src="qrcodejs/qrcode.js"></script>
<script src="qrcode-replace.js"></script>
</body>
</html>