forked from HerrBertling/slide-deck-hamburg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (109 loc) Β· 4.92 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>CSSclasses</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/cssclasses.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="reveal/lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'reveal/css/print/pdf.css' : 'reveal/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="reveal/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<img src="assets/cssclasses-logo.svg" alt="CSSclasses" class="img--no-border-shadow">
<p>
<small>Presented by CSSconf EU and OpenTechSchool</small>
</p>
</section>
<section>
<h2>π©π½βπ» What we do</h2>
<blockquote>
<p>CSSclasses is a free, whole-day event focussed on sharing knowledge about CSS.</p>
</blockquote>
</section>
<section>
<h2>βΉοΈ The basics</h2>
<p>Presented by CSSconf EU and OpenTechSchool</p>
<p>Whole day event β Saturdays from ~10:00-17:00</p>
<p>Open learning environment, coaches to help</p>
<p><a href="http://cssclasses.cssconf.eu/code-of-conduct/">Code of Conduct</a>, <a href="https://opentechschool.github.io/slides/presentations/coaching/">Coaching Guidelines</a>, <a href="http://cssclasses.cssconf.eu/materials/">Learning Materials</a>, <a href="//bit.ly/cssclasses">Slack</a></p>
</section>
<section>
<h2>π The story so far</h2>
<p><strong class="highlight highlight-2">Five events</strong> since May 2016</p>
<p><strong class="highlight highlight-1">294</strong> RSVPs via meetup.com</p>
<p><strong class="highlight">~200</strong> attendees at the events ππ»</p>
<p>A lot of highly engaged coaches β₯οΈ</p>
<p>Core team of six organizers</p>
</section>
<section>
<h2>π Meetup event comments</h2>
<p>"I had a great day and <strong class="highlight">learnt lots</strong> - who would have guessed that CSS could be so much fun?!"</p>
<p>"One of the best Meetups I have been to! Thank you for organizing and coaching."</p>
<p>"Thanks for the <strong class="highlight highlight-2">great meet up!</strong> The tutorial was well structured and easy to follow. I had fun and learned a lot!"</p>
<p>"It was a <strong class="highlight highlight-1">wonderful</strong> time! Thanks all of you!"</p>
</section>
<section>
<h2>βοΈ The one request we getβ¦</h2>
<blockquote>
<p>This is so cool β you should do it <strong class="highlight highlight-2">for Javascript, too!</strong></p>
</blockquote>
</section>
<section data-background-image="https://media.giphy.com/media/LgwB3VXcREFPO/giphy.gif">
</section>
<section>
<h2>π Help us offer this!</h2>
<p>π» Updating existing learning material</p>
<p>π Organizing (we've got to do lists π)</p>
<p>π° Sponsoring</p>
<p>π Coaching</p>
</section>
<section>
<h2>π Get in touch</h2>
<p>In person</p>
<p>Via <a href="//bit.ly/cssclasses">Slack</a></p>
<p>Via <a href="https://twitter.com/cssclasseshh">Twitter</a></p>
</section>
</div>
</div>
<script src="reveal/lib/js/head.min.js"></script>
<script src="reveal/js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'reveal/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'reveal/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'reveal/plugin/zoom-js/zoom.js', async: true },
{ src: 'reveal/plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>