-
Notifications
You must be signed in to change notification settings - Fork 0
/
tp14.html
152 lines (141 loc) · 5.92 KB
/
tp14.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
141
142
143
144
145
146
147
148
149
150
151
152
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Technologieplauscherl - Mit Freunden zamkommen und über Technologie, Coding und Projekte reden</title>
<meta http-equiv="refresh" content="0; url=/14">
<meta name="viewport" content="width=device-width">
<script src="//use.edgefonts.net/bebas-neue;open-sans:n4,n6.js"></script>
<!-- lobster -->
<link rel="stylesheet" href="css/main.css">
</head>
<body itemscope itemtype="http://schema.org/Event">
<div class="wrapper">
<h1 itemprop="name">Technologieplauscherl XIV</h1>
<p class="info">
<span itemprop="startDate" content="2013-10-22T19:00"><i class="icon-calendar"></i> 22. Oktober 2013 <i class="icon-clock"></i> 19:00 Uhr</span>
</p>
<h2>Sessions</h2>
<section class="grid">
<article class="cell cell--w25" itemprop="subEvent" itemscope itemtype="http://schema.org/Event">
<div class="speaker">
<img src="http://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash2/c49.0.602.602/s160x160/545731_3969185987727_2021666423_n.jpg" alt="" class="speaker__img">
<div class="speaker__info">
<span class="speaker__name" itemprop="performer">Manuel Berger</span>
<div class="speaker__session" itemprop="name">Telefonbot mit twilio</div>
</div>
</div>
</article>
<article class="cell cell--w25" itemprop="subEvent" itemscope itemtype="http://schema.org/Event">
<div class="speaker">
<img src="http://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash3/c0.30.180.180/s160x160/7728_131170337117_2334043_a.jpg" alt="" class="speaker__img">
<div class="speaker__info">
<span class="speaker__name" itemprop="performer">Thomas Einwaller</span>
<div class="speaker__session" itemprop="name">vagrant und docker</div>
</div>
</div>
</article>
<article class="cell cell--w25" itemprop="subEvent" itemscope itemtype="http://schema.org/Event">
<div class="speaker">
<img src="http://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash4/c44.72.449.449/s160x160/399624_487251704628114_991645005_n.jpg" alt="" class="speaker__img">
<div class="speaker__info">
<span class="speaker__name" itemprop="performer">Stefan Baumgartner</span>
<div class="speaker__session" itemprop="name">Frontend-Tooling: Emmet, Sass</div>
</div>
</div>
</article>
<article class="cell cell--w25" itemprop="subEvent" itemscope itemtype="http://schema.org/Event">
<div class="speaker">
<img src="http://fbcdn-profile-a.akamaihd.net/hprofile-ak-frc3/c0.0.180.180/s160x160/1385624_174423526082097_28285060_a.jpg" alt="" class="speaker__img">
<div class="speaker__info">
<span class="speaker__name" itemprop="performer">Thomas Koll</span>
<div class="speaker__session" itemprop="name">DNA Game</div>
</div>
</div>
</article>
</section>
<aside itemprop="description">
<p>Technologie-Plauscherl Linz: Mit Freunden zamkommen und über Technologie, Coding und Projekte reden.</p>
<ol>
<li>Jeder Vortrag dauert 15-30 Minuten</li>
<li>Jeder darf einen Vortrag halten</li>
<li>Das Thema ist grob "Technology & Coding & Projekte"</li>
<li>Das Klima ist relaxt, es gibt genügend Pausen zum Plaudern</li>
</ol>
<p>Deinen Vortrag am besten auf unserer <a href="https://www.facebook.com/groups/technologie.plauscherl/">Facebook Pinnwand</a> vorab bekanntgeben. Bei den "trial-runs" hat sich gezeigt, dass die Zeit an einem Abend für ca. vier bis fünf Vorträge reicht.</p>
</aside>
</div>
<div class="map-area" itemprop="location" itemscope itemtype="http://schema.org/PostalAddress">
<h2 class="map-hl">Location</h2>
<div class="map" id="map-canvas">
</div>
<address class="adr">
<span class="n" itemprop="name"><a href="http://devlol.org/wiki/HTTP" itemprop="url">Hackerspace Linz - <span class="nickname">DevLoL</span></a></span>
<span class="street-address" itemprop="streetAddress">Hofgasse 19</span>
<span class="postal-code" itemprop="postalCode">4020</span> <span class="locality" itemprop="addressLocality">Linz</span>
</address>
</div>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
var locations = {
hackerSpace: new google.maps.LatLng(48.30583, 14.28385)
}
function initialize() {
var mapOptions = {
center: locations.hackerSpace,
zoom: 18,
scrollwheel: false,
draggable: false,
zoomable: false,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
var mql1 = window.matchMedia('(min-width: 40em');
mql1.addListener(function(m) {
if(m.matches) {
map.panBy(200,0);
map.setCenter(locations.hackerSpace);
}
});
var mql1 = window.matchMedia('(min-width: 60em');
mql1.addListener(function(m) {
if(m.matches) {
map.panBy(200,0);
map.setCenter(locations.hackerSpace);
}
});
var mql3 = window.matchMedia('(max-width: 40em');
mql3.addListener(function(m) {
if(m.matches) {
map.panBy(0,0);
map.setCenter(locations.hackerSpace);
}
});
if(window.innerWidth >= 40*16) {
map.panBy(200,0);
}
var marker = new google.maps.Marker({
position: locations.hackerSpace,
title: "DevLOL - Hackerspace Linz"
});
// To add the marker to the map, call setMap();
marker.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<footer>
<p class="wrapper">
2013 - Technologieplauscherl Linz - <a href="/index.html">Home</a>
</p>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-30512766-3', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>