-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
73 lines (63 loc) · 2.21 KB
/
contact.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
---
layout: content
title: Contact
---
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
function initialize() {
var map_canvas = document.getElementById('map_canvas');
var position = new google.maps.LatLng(53.223854, 6.574181);
var map_options = {
center: position,
zoom: 4,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(map_canvas, map_options)
var marker = new google.maps.Marker({
position: position,
map: map,
title: 'drugis.org'
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<!-- Main Page Content and Sidebar -->
<div class="grid-container">
<div class="grid-x grid-margin-x">
<!-- Contact Details -->
<div class="cell large-8">
<div class="callout" style="background: #f2f2f2">
<p><em>Daan Reid</em> is the primary contact for drugis.org.</p>
<p>E-mail: d.reid [at] umcg.nl</p>
<p>Phone: +31 (0)50 3617398</p>
</div>
<h4>Locating our office</h4>
<p>The development team is located on the first floor (1.B) of the 'Zusterhuis' building of the
University Medical Center Groningen (UMCG). The department can be reached via entrances 27 and 29.
Also see <a
href="https://www.umcg.nl/SiteCollectionImages/UMCG/Over_het_UMCG/Bereikbaarheid/PlategrondUMCGplusAB.jpg">this
map</a> of the hospital complex.
</p>
</div>
<!-- End Contact Details -->
<!-- Sidebar -->
<div class="cell large-4 small-12">
<div class="mapouter">
<div class="gmap_canvas"><iframe width="300" height="250" id="gmap_canvas"
src="https://maps.google.com/maps?q=53.22389858782632%2C%206.575734401168924&t=&z=13&ie=UTF8&iwloc=&output=embed"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<h4>Visiting address</h4>
<p>
Department of Epidemiology<br />
University Medical Center Groningen<br />
Hanzeplein 1<br />
9713 GZ Groningen<br />
The Netherlands
</p>
</div>
<!-- End Sidebar -->
</div>
</div>
<!-- End Main Content and Sidebar -->