Mercurial > dive4elements > website
comparison contact.html @ 8:917577dec6d4
Added contact.html.
author | Ariane Broermann <ariane@intevation.de> |
---|---|
date | Mon, 03 Feb 2014 12:02:23 +0100 |
parents | |
children | 2678e46fcecc |
comparison
equal
deleted
inserted
replaced
7:1d80634d0997 | 8:917577dec6d4 |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>Dive4Elements</title> | |
5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
6 <meta charset="utf-8"> | |
7 <meta name="description" content=""> | |
8 <meta name="author" content="Ariane Brörmann"> | |
9 <!-- Bootstrap --> | |
10 <link href="bootstrap-3.1.0/dist/css/bootstrap.min.css" rel="stylesheet"> | |
11 | |
12 <!-- Leaflet CSS --> | |
13 <link href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" rel="stylesheet"> | |
14 | |
15 <!-- Custom styles for this template --> | |
16 <link href="css/style.css" rel="stylesheet"> | |
17 | |
18 <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | |
19 <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | |
20 <!--[if lt IE 9]> | |
21 <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | |
22 <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> | |
23 <![endif]--> | |
24 </head> | |
25 <body> | |
26 <div class="container"> | |
27 | |
28 <!-- Static navbar --> | |
29 <div class="navbar navbar-default" role="navigation"> | |
30 <div class="navbar-header"> | |
31 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | |
32 <span class="sr-only">Toggle navigation</span> | |
33 <span class="icon-bar"></span> | |
34 <span class="icon-bar"></span> | |
35 <span class="icon-bar"></span> | |
36 </button> | |
37 <a class="navbar-brand" href="index.html">D4E-Logo</a> | |
38 </div> | |
39 <div class="navbar-collapse collapse"> | |
40 <ul class="nav navbar-nav navbar-right"> | |
41 <li><a href="http://wald.intevation.org/scm/?group_id=57">SCM-Repository</a></li> | |
42 <li><a href="http://lists.wald.intevation.org/mailman/listinfo/dive4elements-commits">Mailinglist</a></li> | |
43 <li class="active"><a href="contact.html">Kontakt</a></li> | |
44 </ul> | |
45 </div> | |
46 </div><!-- /navbar --> | |
47 | |
48 <div class="row row-dive4elements"> | |
49 <div class="col-md-6"> | |
50 <address> | |
51 <strong>Intevation GmbH</strong> | |
52 <br>Neuer Graben 17 | |
53 <br>49074 Osnabrück, Deutschland | |
54 <br>Telefon: +49-541-33 50 83 - 0 | |
55 <br>Fax: +49-541-33 50 83 - 99 | |
56 </address> | |
57 <address>Registereintrag: | |
58 <br>HR B 18998 | |
59 <br>Amtsgericht Osnabrück | |
60 </address> | |
61 <address>Homepage: <a href="http://www.intevation.de">www.intevation.de</a> | |
62 <br>E-Mail-Adresse: <a href= | |
63 "mailto:geospatial@intevation.de">geospatial@intevation.de</a> | |
64 </address> | |
65 </div> | |
66 <div class="col-md-6"> | |
67 <!-- Anfahrtskizze --> | |
68 <div style="width:300px; height:250px; align:right" id="map"></div> | |
69 <script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script> | |
70 <script> | |
71 var map = L.map('map').setView([52.271987, 8.046263], 17); | |
72 | |
73 L.tileLayer.wms('http://osm.intevation.de/cgi-bin/standard.fcgi?', { | |
74 layers: 'OSM-WMS-Dienst', | |
75 format: 'image/png', | |
76 attribution: 'Map data © <a href="http://openstreetmap.org">' | |
77 + 'OpenStreetMap</a>' | |
78 + '<a href="http://creativecommons.org/licenses/by-sa/2.0/">' | |
79 + ' (CC-BY-SA 2.0)</a>' | |
80 }).addTo(map); | |
81 // Disable attribution leaflet prefix | |
82 map.attributionControl.setPrefix(false); | |
83 L.marker([52.271987, 8.046263]).addTo(map) | |
84 .bindPopup('Intevation') | |
85 .openPopup(); | |
86 </script> | |
87 </div> | |
88 </div> | |
89 <p>Geschäftsführer: Frank Koormann, Bernhard Reiter, Dr. Jan-Oliver Wagner</p> | |
90 | |
91 <div class="footer"> | |
92 © 2011 Intevation GmbH <br> | |
93 Dive4Elements ist lizensiert unter der <a href= | |
94 "http://www.gnu.org/licenses/lgpl-2.1.html">GNU LGPL v2.1</a>. | |
95 </div><!-- /footer --> | |
96 | |
97 <!-- Bootstrap core JavaScript | |
98 ================================================== --> | |
99 <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | |
100 <script src="https://code.jquery.com/jquery.js"></script> | |
101 <!-- Include all compiled plugins (below), or include individual files as needed --> | |
102 <script src="bootstrap-3.1.0/dist/js/bootstrap.min.js"></script> | |
103 <script src="js/dive4elements.js"></script> | |
104 </body> | |
105 </html> |