-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (46 loc) · 1.82 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>♥ Москва</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container px-2 pb-3">
<div id="map" class="w-100 mb-1"></div>
<div class="accordion"></div>
</div>
<!-- Шаблоны -->
<div style="display: none">
<div id="pattern-category">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#%id">%name</a>
<span class="tag tag-pill tag-default">%count</span>
</h4>
</div>
<div id="%id" class="panel-collapse collapse">
<div class="list-group mb-1">%list</div>
</div>
</div>
</div>
<div id="pattern-place">
<a href="#" class="list-group-item list-group-item-action" data-geo="%x, %y">
<span class="label %status">%name</span>
</a>
</div>
</div>
<script src="//code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
<script src="//maps.api.2gis.ru/2.0/loader.js?pkg=full"></script>
<script src="places/moscow.js"></script>
<script src="templates.js"></script>
<script src="script.js"></script>
</body>
</html>