-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (61 loc) · 2.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>openSUSE: HowTo GIT</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/opensuse.css">
<link rel="stylesheet" href="lib/css/github.css">
<link rel="stylesheet" href="plugin/toc-progress/toc-progress.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-background="img/hexagons.png"
data-background-size="100%"
data-background-position="50% 105%"
data-state="no-toc-progress">
<h1 class="no-toc-progress">HowTo GIT</h1>
<h2>a short introduction in git and gitlab</h2>
<div class="title-name">Thorsten Bro - Member of openSUSE Heroes</div>
<div class="title-mail">Thorsten.Bro[at]suse.com</div>
<div class="title-gpgkey">GPG fingerprint:<br />1D09 FFA7 B54F C570 3092 02D4 433A 21C2 C930 E5E6</div>
</section>
<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->
<section data-markdown="slides.md" data-separator="^\n---\n$" data-separator-vertical="^\n--\n$" data-separator-notes="^Note:">
<!-- data from slides.md file will be loaded here as slides -->
</section>
<section data-state="no-toc-progress">
<h1 class="no-toc-progress">Questions?</h1>
<p>
<img src="img/chameleon.svg" style="max-height:300px;">
</p>
<div class="colophon">
</div>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
Reveal.initialize({
controls: true,
progress: true,
history: true,
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/toc-progress/toc-progress.js',
async: true,
callback: function()
{ toc_progress.initialize('scroll', 'rgba(255,255,255,0.25)'); toc_progress.create(); }
},
{ src: 'plugin/notes/notes.js', async:true }
]
});
</script>
</body>
</html>