-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Carte des parrainages - Élections françaises 2017</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/awesomplete/1.1.1/awesomplete.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/2.6.1/fuse.min.js"></script>
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, target-densitydpi=device-dpi" />
<script src="PruneCluster.js"></script>
<script src="awesomplete.js"></script>
<link rel="stylesheet" href="PruneCluster.css"/>
<link rel="stylesheet" href="style.css"/>
<script src="script.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<h1>Carte des parrainages - Élection présidentielle française de 2017</h1>
<div id="map"></div>
<input id="search-input" tabindex="1" placeholder="Recherchez un candidat ou un parrainage" type="text"/>
<p id="suggestions" style="display:none">
<a href="#" id="showHideMobile">Candidats</a>
<a href="#" id="clear">Réinitialiser</a>
<a href="#" id="advanced">Recherche avancée</a>
</p>
<form id="advanced_candidats" style="display:none">
<fieldset id="advanced_candidats_list">
</fieldset>
<div class="advanced_candidats_actions">
<a href="#" id="close_advanced">Fermer</a>
<input type="reset" value="Réinitaliser" />
<input type="submit" value="Valider" />
</div>
</form>
</body>
</html>