-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.slim
More file actions
46 lines (39 loc) · 1000 Bytes
/
index.slim
File metadata and controls
46 lines (39 loc) · 1000 Bytes
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
doctype html
html
head
meta charset="utf-8"
title Introspection
meta name="description" content=""
meta name="author" content=""
link rel="stylesheet" href="css/reveal.css"
link rel="stylesheet" href="css/simple.css"
link rel="stylesheet" href="css/googlecode.css"
body
div.reveal
div.slides
== yield
script src="js/head.min.js"
script src="js/reveal.js"
javascript:
Reveal.initialize({
width: '100%',
height: '100%',
margin: 0.05,
controls: false,
progress: false,
history: true,
center: false,
rollingLinks: true,
transition: 'none',
backgroundTransition: 'none',
dependencies: [
{
src: 'js/highlight.js',
async: true,
callback: function() {
hljs.configure({ languages: ['ruby'] });
hljs.initHighlightingOnLoad();
}
}
]
});