forked from hakimel/reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
140 lines (133 loc) · 5.87 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>reveal.js</title>
<meta name="description" content="{{ Descrizione }}">
<meta name="author" content="Alessandro Lai">
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/facile-engineering.css" id="theme">
<link type="image/x-icon" rel="shortcut icon" href="img/favicon.ico"/>
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section id="title" data-background-image="img/theme/bg-cover.svg">
<h1>Kubernetes</h1>
<h2>for PHP developers</h2>
<p>
<a href="https://alessandrolai.dev/">Alessandro Lai</a> / <a href="http://twitter.com/AlessandroLai">@AlessandroLai</a><br>
</p>
<small>
<p>
<a href="{{ event-link }}">{{ Event name }}</a> - May 10th-11th 2018,
Verona
</p>
<p class="smaller">
<a href="https://joind.in/talk/TODO-CHANGEME">https://joind.in/talk/TODO-CHANGEME</a>
</p>
</small>
</section>
<section id="intro">
<section>
<h2>Who am I?</h2>
<img src="img/github_avatar.jpg" class="avatar" width="30%">
<div style="float: right; padding-top: 2em">
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-user"></i></span>Alessandro Lai</li>
<li>
<span class="fa-li"><i class="fas fa-desktop"></i></span>
Team lead developer @ Facile.it
</li>
<li>
<span class="fa-li"><i class="fab fa-github"></i></span>
<a target="_blank" href="https://github.com/Jean85">@Jean85</a>
</li>
<li>
<span class="fa-li"><i class="fab fa-twitter"></i></span>
<a target="_blank" href="https://twitter.com/AlessandroLai">@AlessandroLai</a>
</li>
<li>
<span class="fa-li"><i class="fas fa-users"></i></span>
PHP UG Milan Coordinator
</li>
<li>
<span class="fa-li">
<i class="fas fa-certificate"></i>
</span>
PHP-FIG Secretary
</li>
</ul>
</div>
</section>
</section>
<section id="ending">
<section>
<h2>Thanks!</h2>
<p>
Please rate my talk on Joind.in: <a href="https://joind.in/talk/TODO-CHANGEME">https://joind.in/talk/TODO-CHANGEME</a>
</p>
<img class="stretch" src="img/joindin-qr.png" alt="Joind.in link: https://joind.in/talk/TODO-CHANGEME">
<aside class="notes">
45:00
</aside>
</section>
<section>
<h2 style="margin-bottom: 2em">Questions?</h2>
<h4>Contacts</h4>
<div style="font-size: smaller">
<ul class="fa-ul">
<li>
<span class="fa-li"><i class="fas fa-desktop"></i></span>
<a target="_blank" href="https://alessandrolai.dev">https://alessandrolai.dev</a>
<small style="vertical-align: middle">(slides & other talks here)</small>
</li>
<li>
<span class="fa-li"><i class="fas fa-envelope"></i></span>
<a target="_blank" href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<span class="fa-li"><i class="fas fa-envelope"></i></span>
<a target="_blank" href="mailto:[email protected]">[email protected]</a>
<small style="vertical-align: middle">(we are hiring!)</small>
</li>
<li>
<span class="fa-li"><i class="fab fa-github"></i></span>
<a target="_blank" href="https://github.com/Jean85">@Jean85</a>
</li>
<li>
<span class="fa-li"><i class="fab fa-twitter"></i></span>
<a target="_blank" href="https://twitter.com/AlessandroLai">@AlessandroLai</a>
</li>
</ul>
</div>
</section>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script src="plugin/zoom/zoom.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [
RevealMarkdown,
RevealHighlight,
RevealNotes,
RevealZoom
]
});
</script>
</body>
</html>