-
Notifications
You must be signed in to change notification settings - Fork 0
/
tp10.html
144 lines (132 loc) · 5.35 KB
/
tp10.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
<!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=/10">
<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 X</h1>
<p class="info">
<span itemprop="startDate" content="2013-03-14T18:30"><i class="icon-calendar"></i>14. März 2013 <i class="icon-clock"></i> 18:30 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="//fbcdn-profile-a.akamaihd.net/hprofile-ak-ash2/484050_10151326811119746_578315574_a.jpg" alt="" class="speaker__img">
<div class="speaker__info">
<span class="speaker__name" itemprop="performer">Paul Klingelhuber</span>
<div class="speaker__session" itemprop="name">knockout.js data binding - or - why you are doing ajax wrong</div>
</div>
</div>
</article>
<article class="cell cell--w25" itemprop="subEvent" itemscope itemtype="http://schema.org/Event">
<div class="speaker">
<img src="//fbcdn-profile-a.akamaihd.net/hprofile-ak-prn1/t1/c51.134.640.640/s200x200/384885_332202696797337_781807793_n.jpg" alt="" class="speaker__img">
<div class="speaker__info">
<span class="speaker__name" itemprop="performer">Harald Vogl</span>
<div class="speaker__session" itemprop="name">A simple way of cross platform mobile development.</div>
</div>
</div>
</article>
<article class="cell cell--w25" itemprop="subEvent" itemscope itemtype="http://schema.org/Event">
<div class="speaker">
<img src="//fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/t1/c22.0.157.157/6248_1090874964647_7294244_n.jpg" alt="" class="speaker__img">
<div class="speaker__info">
<span class="speaker__name" itemprop="performer">Christoph Stichlberger</span>
<div class="speaker__session" itemprop="name">Making Big Dollar in Stocks with Fourier Transforms</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">Catalysts GmbH</a></span>
<span class="street-address" itemprop="streetAddress">Huemerstraße 23</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 = {
main: new google.maps.LatLng(48.30362, 14.29898)
}
function initialize() {
var mapOptions = {
center: locations.main,
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.main);
}
});
var mql1 = window.matchMedia('(min-width: 60em');
mql1.addListener(function(m) {
if(m.matches) {
map.panBy(200,0);
map.setCenter(locations.main);
}
});
var mql3 = window.matchMedia('(max-width: 40em');
mql3.addListener(function(m) {
if(m.matches) {
map.panBy(0,0);
map.setCenter(locations.main);
}
});
if(window.innerWidth >= 40*16) {
map.panBy(200,0);
}
var marker = new google.maps.Marker({
position: locations.main,
title: "Catalysts 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>