-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
61 lines (56 loc) · 1.82 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
<html>
<head>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/white.css" id="theme">
<link rel="stylesheet" href="css/presentation.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-background="#363633">
<img src="img/lambda-pi-logo.svg" alt="logo" width="400px">
</section>
<section>
<h2>Thanks for being here!</h2>
</section>
<section>
<h2>You have something to share?</h2>
<ul>
<li class="fragment fade-in">be it short (5min) or long (30min)</li>
<li class="fragment fade-in">a hands-on coding session</li>
<li class="fragment fade-in">file an issue and describe your idea</li>
</ul>
</section>
<section>
<h3>github.com/lambda-pi-meetup/talks</h3>
</section>
<section>
<h2>Or you want to hear something about a specific topic?</h2>
<ul>
<li class="fragment fade-in">file an issue and describe your idea</li>
</ul>
</section>
<section>
<h2>Todays programm</h2>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
Reveal.initialize({
width: "80%",
height: "80%",
controls: false,
progress: false,
history: false,
center: true,
transition: 'none', // none/fade/slide/convex/concave/zoom
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/zoom-js/zoom.js', async: true }
]
});
</script>
</body>
</html>