-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (45 loc) · 1.38 KB
/
index.html
File metadata and controls
50 lines (45 loc) · 1.38 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
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PyRevit — Supercharging Autodesk Revit with Python</title>
<!-- Reveal.js core -->
<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="/node_modules/reveal.js/dist/theme/black.css" />
<!-- Syntax highlight theme (monokai) -->
<link rel="stylesheet" href="/node_modules/reveal.js/plugin/highlight/monokai.css" />
<!-- Custom overrides -->
<link rel="stylesheet" href="/styles/custom.css" />
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- SLIDES -->
</div><!-- /.slides -->
</div><!-- /.reveal -->
<!-- Reveal.js core -->
<script src="/node_modules/reveal.js/dist/reveal.js"></script>
<!-- Plugins -->
<script src="/node_modules/reveal.js/plugin/highlight/highlight.js"></script>
<script src="/node_modules/reveal.js/plugin/notes/notes.js"></script>
<script>
Reveal.initialize({
hash: true,
slideNumber: 'c/t',
transition: 'fade',
transitionSpeed: 'fast',
center: false,
controls: true,
progress: true,
width: 1280,
height: 720,
margin: 0.06,
minScale: 0.2,
maxScale: 2.0,
plugins: [RevealHighlight, RevealNotes]
});
</script>
</body>
</html>