-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtemplate.html
39 lines (34 loc) · 1.59 KB
/
template.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
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="leaflet/leaflet.css" />
<link href="style.css" type="text/css" rel="stylesheet">
<title>EmbeddedMap</title>
</head>
<body>
<div id="box">
<div id="title">
EmbeddedMap
</div>
<p>Interactive map of companies working on the embedded systems, electronics and industrial market.</p>
<p style="text-align:left;padding-left:70px;"><span style="font-size:22px;">{{companies_nb}}</span> companies <br /><span style="font-size:22px;">{{locations_nb}}</span> locations</p>
<p>
<span onclick="document.getElementById('popup').style.visibility = 'visible';" style="background-color: #0078A8;padding:10px;cursor:pointer;color:white;"><strong>Show the full list</strong></span>
<br /> <br />
<a href="" onclick="return showAllAround();">Show all</a> - <a href="" onclick="return hideAllAround();">Hide all</a>
<br />
<a target="_blank" href="http://www.yoannsculo.fr/embeddedmap-carte-societes-systemes-embarques/">Contribute</a> - <a target="_blank" href="https://github.com/yoannsculo/embeddedmap">Fork me</a> - <a target="_blank" href="http://www.yoannsculo.fr/a-propos">Contact</a>
</p>
</div>
<div id="map" class="map" style="height: 100%; border:0;"></div>
<script src="leaflet/leaflet.js"></script>
<script src="js/map.js"></script>
<div id="popup">
<a style="float:right;cursor:pointer;" onclick="document.getElementById('popup').style.visibility = 'hidden';">Close</a>
<div id="content">
<ul>{{list}}</ul>
</div>
</div>
</body>
</html>