-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmapall.php
More file actions
90 lines (88 loc) · 4.15 KB
/
Copy pathmapall.php
File metadata and controls
90 lines (88 loc) · 4.15 KB
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
<? require_once('connection.php') ?>
<!doctype html>
<html manifest="thema.appcache" class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>.: Babymap :.</title>
<link rel="icon" href="img/favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="css/style.css" title="default">
<link rel="roze stylesheet" type="text/css" href="css/style_roze.css" title="roze" />
<link rel="blauwroze stylesheet" type="text/css" href="css/style_blauw_roze.css" title="blauwroze" />
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js'></script>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="scripts/switcher.js"></script>
<script src="scripts/script.js"></script>
</head>
<body>
<div id="container">
<div id="headercolor">
<div id="container_breedte">
<header id="logo_plek"><a href="index.php" id="logo"><img width="333" src="img/logo.png" alt="" /></a></header>
<nav id="menu">
<ul>
<li class='active'><a href='index.php'><span>Home</span></a></li>
<li class='has-sub'><a href='allebabykaartjes.php'><span>Babykaartjes</span></a>
<ul>
<li class='has-sub'><a href='allebabykaartjes.php'><span>Babykaartjes</span></a>
<ul>
<li><a href='allebabykaartjes.php'><span>Alle babykaartjes</span></a></li>
<li><a href='mijnbabykaartjes.php'><span>Mijn babykaartjes</span></a></li>
<li class='last'><a href='babykaartjestoevoeg.php'><span>Nieuw babykaartje</span></a></li>
</ul>
</li>
<li class='has-sub'><a href='mapall.php'><span>Babymaps</span></a></li>
</ul>
</li>
<li><a href='info.php'><span>Informatie</span></a></li>
<? if(empty($_SESSION['user'])) { ?>
<li><a href='login.php'><span>Inloggen</span></a></li>
<? } else { ?>
<li class='has-sub'><a href='ingelogd.php'><span>Account</span></a>
<ul>
<li class='last'><a href='logout.php'><span>Uitloggen</span></a></li>
</ul>
</li>
<? } ?>
<li class='last'><a href='contact.php'><span>Contact</span></a></li>
</ul>
<div id="styleswitchen">
<div id="styleswitchvak1"><a href="#" onclick="setActiveStyleSheet('default'); return false;"><img src="img/clear.png" height="20" width="20" alt="" /></a></div>
<div id="styleswitchvak2"><a href="#" onclick="setActiveStyleSheet('roze'); return false;"><img src="img/clear.png" height="20" width="20" alt="" /></a></div>
<div id="styleswitchvak3"><a href="#" onclick="setActiveStyleSheet('blauwroze'); return false;"><img src="img/clear.png" height="20" width="20" alt="" /></a></div>
</div>
</nav>
</nav>
</div>
</div>
<div class="blauwelijn"></div>
<div id="container_content" style="width:auto">
<style>
#map-canvas {
width: auto;
height: 800px;
margin-bottom: -10px;
}
</style>
<? require_once("mapmultiple.php"); ?>
<div id="map-canvas" style="margin-top:-30px"></div>
</div>
<footer id="footer">
<div class="blauwelijn"></div>
<div id="footer_content">
<div id="footer_socialmedia_iconen">
<a href="https://plusone.google.com/_/+1/confirm?hl=en&url=http://tmtg03.ict-lab.nl/website" target="_blank"><img src="img/google.png" alt="" /></a>
<a href="https://www.facebook.com/sharer/sharer.php?u=http://tmtg03.ict-lab.nl/website" target="_blank"><img src="img/facebook.png" alt="" /></a>
<a href="http://twitter.com/home?status=http://tmtg03.ict-lab.nl/website" target="_blank"><img src="img/twitter.png" alt="" /></a>
</div>
<div id="footer_copyright">
<p class="copyright_tekst">© 2013 www.babyberichten.nl</p>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="scripts/jquery.gmap.min.js"></script>
<script type="text/javascript" src="scripts/maps.js"></script>
</body>
</html>