This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (32 loc) · 2.07 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
<!doctype html>
<html ng-app="compare">
<head>
<title>Pelias Compare App</title>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<script src="bower_components/jquery/jquery.js"></script>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="bower_components/ace-builds/src-min-noconflict/ace.js" charset="utf-8"></script>
<script type="text/javascript" src="bower_components/angular/angular.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular-sanitize.js"></script>
<script type="text/javascript" src="bower_components/angular-ui-ace/ui-ace.js"></script>
<script type="text/javascript" src="bower_components/leaflet/dist/leaflet.js"></script>
<link rel="stylesheet" href="bower_components/leaflet/dist/leaflet.css" />
<script type="text/javascript" src="bower_components/angular-leaflet/dist/angular-leaflet-directive.min.js"></script>
<script type="text/javascript" src="bower_components/uri.js/src/URI.min.js"></script>
<script type="text/javascript" src="bower_components/drmonty-leaflet-awesome-markers/js/leaflet.awesome-markers.min.js"></script>
<link rel="stylesheet" href="bower_components/drmonty-leaflet-awesome-markers/css/leaflet.awesome-markers.css">
<link rel="stylesheet" href="style/css.css" />
<script src="app/app.js"></script>
<script src="app/controllers/AceEditor.js"></script>
<script src="app/controllers/ScriptEditor.js"></script>
<script src="app/controllers/MainController.js"></script>
<script src="app/controllers/MapController.js"></script>
</head>
<body>
<div ng-view=""></div>
</body>
</html>