-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (60 loc) · 2.14 KB
/
index.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
<!doctype html>
<html lang="de">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Plakatemap</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" >
<link rel="stylesheet" href="css/leaflet.css" >
<link rel="stylesheet" href="css/style.css" >
</head>
<body>
<div class="container">
<h1>Plakatemap</h1>
<div id="map">
</div>
<table id="table" class="table">
<thead>
<tr>
<th>#</th>
<th>Standort</th>
<th>Melden</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div id="hiddenTemplates">
<div class="actionTemplate">
<a class="email" href="">E-Mail</a>,
<a class="twitter" href="" target="_blank">Twitter</a>,
<a class="messenger" href="http://fb.com/msg/PiratenGraz">FB Messenger</a>
</div>
<table id="">
<tr class="tableRowTemplate">
<th class="number"></th>
<td class="place"></td>
<td class="action"></td>
</tr>
</table>
</div>
<footer>
<hr />
<a href="//creativecommons.org/publicdomain/zero/1.0/">CC0 1.0</a>
©
<a href="//piraten-graz.at/rechtliches/impressum/">Piratenpartei Graz</a> 2017 -
<a href="//www.facebook.com/piratengraz">Facebook</a> -
<a href="//twitter.com/PiratenGraz">Twitter</a> -
<a href="//github.com/PPOE/plakatemap">GitHub</a>
</footer>
</div>
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/tether.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/leaflet.js"></script>
<script src="js/script.js"></script>
</body>
</html>