Skip to content

Commit 1c4b811

Browse files
committed
Add slides for november meetup
1 parent 04f9a62 commit 1c4b811

File tree

3 files changed

+172
-0
lines changed

3 files changed

+172
-0
lines changed
93.2 KB
Loading

phpugms_greeting_2017-11/img/.gitkeep

Whitespace-only changes.

phpugms_greeting_2017-11/index.html

Lines changed: 172 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
7+
<title>PHP Usergroup Münster</title>
8+
9+
<meta name="description" content="PHP Usergroup Münster">
10+
11+
<meta name="apple-mobile-web-app-capable" content="yes" />
12+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
13+
14+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
15+
16+
<link rel="stylesheet" href="../reveal.js/css/reveal.css">
17+
<link rel="stylesheet" href="../theme/theme.css" id="theme">
18+
19+
<!-- Printing and PDF exports -->
20+
<script>
21+
var link = document.createElement( 'link' );
22+
link.rel = 'stylesheet';
23+
link.type = 'text/css';
24+
link.href = window.location.search.match( /print-pdf/gi ) ? '../reveal.js/css/print/pdf.css' : '../reveal.js/css/print/paper.css';
25+
document.getElementsByTagName( 'head' )[0].appendChild( link );
26+
</script>
27+
28+
<style>
29+
.reveal footer {
30+
background-color: #7c83b7;
31+
}
32+
33+
.reveal a {
34+
color: #50587c;
35+
}
36+
37+
38+
.reveal h1:after, .reveal h2:after {
39+
background: #50587c;
40+
}
41+
</style>
42+
</head>
43+
44+
<body class="light">
45+
<div class="reveal">
46+
<div class="slides">
47+
48+
<section>
49+
<h2>
50+
<img alt="PHP Usergroup Münster" src="../assets/phpugms-logo.svg" class="noborder" style="width: 300px">
51+
</h2>
52+
53+
<p>
54+
<a href="https://www.meetup.com/phpugms">meetup.com/phpugms</a>
55+
<br/>
56+
<a href="https://twitter.com/phpugms">@phpugms</a>
57+
<br/>
58+
Wednesday, November 21, 2017
59+
<p>
60+
</section>
61+
62+
<section>
63+
<h1>Wifi</h1>
64+
<p>SSID: GS Event<br>Password: gruenspar4events</p>
65+
</section>
66+
67+
<section>
68+
<h1>Restroom </h1>
69+
</section>
70+
71+
<section>
72+
<h1>Drinks</h1>
73+
</section>
74+
75+
<section>
76+
<h2>Thank you sponsors!</h2>
77+
</section>
78+
79+
80+
81+
<section>
82+
<img src="../assets/gruenspar_logo.jpg" class="noborder" />
83+
<p>Thanks for Drinks, Wifi and Hosting</p>
84+
<p>Looking for a Job? Ask the team!</p>
85+
</section>
86+
87+
88+
<section>
89+
<img src="../assets/shopware_logo_white_on_blue.png" class="noborder" />
90+
<p class="fragment">jobs.shopware.com</p>
91+
</section>
92+
93+
94+
95+
96+
<section>
97+
<h1>Upcoming Events</h1>
98+
</section>
99+
100+
101+
102+
<section class="l-2up">
103+
<h2>December Meeting</h2>
104+
105+
<strong>Tuesday, December 21, 2017</strong><br>
106+
107+
<p>Speaker Wanted!</p>
108+
</section>
109+
110+
111+
<section>
112+
<h2>Todays Speaker</h2>
113+
114+
<div>
115+
<p>Holger Woltersdorf (@hollodotme )</p>
116+
117+
<img src="../assets/speakers/holger-woltersdorf.png">
118+
</div>
119+
</section>
120+
121+
122+
123+
</div>
124+
<footer class="minimal">
125+
<div class="left">
126+
@phpugms
127+
</div>
128+
<div class="center">
129+
</div>
130+
<div class="right">
131+
<a href="https://twitter.com/phpugms">#phpugms</a>
132+
</div>
133+
</footer>
134+
</div>
135+
136+
<script src="../reveal.js/lib/js/head.min.js"></script>
137+
<script src="../reveal.js/js/reveal.js"></script>
138+
139+
<script>
140+
141+
// Full list of configuration options available at:
142+
// https://github.com/hakimel/reveal.js#configuration
143+
Reveal.initialize({
144+
width: 1014,
145+
height: 768,
146+
147+
// Bounds for smallest/largest possible scale to apply to content
148+
minScale: 0.2,
149+
maxScale: 3,
150+
margin: 0.01,
151+
152+
controls: false,
153+
progress: true,
154+
history: true,
155+
center: true,
156+
157+
transition: 'none', // none/fade/slide/convex/concave/zoom
158+
159+
slideNumber: false,
160+
161+
// Optional reveal.js plugins
162+
dependencies: [
163+
//{ src: '../reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
164+
//{ src: '../reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
165+
{ src: '../reveal.js/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
166+
{ src: '../reveal.js/plugin/notes/notes.js', async: true }
167+
]
168+
});
169+
170+
</script>
171+
</body>
172+
</html>

0 commit comments

Comments
 (0)