This repository was archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.5 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.5 KB
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
<!DOCTYPE html>
<html ng-app='civic-graph-kiosk'>
<head>
<title>Civic Graph Check-In</title>
<base href='/'>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1'>
<meta name='apple-mobile-web-app-capable' content='yes'>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular-route.min.js"></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular-animate.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.13.0/ui-bootstrap-tpls.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.9.2/lodash.min.js'></script>
<script src='lib/angular-leaflet-directive.min.js'></script>
<script src='build/app.min.js'></script>
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css'>
<link rel='stylesheet' href='build/app.min.css'>
<link rel='icon' type='image/png' href='img/microsoft.ico'>
<link rel='apple-touch-icon' href='img/apple-touch-icon.png'>
</head>
<body>
<div ng-view></div>
<!--<div ng-if="homeCtrl.isDataLoaded"-->
<!--ng-include="'modules/edit/edit.template.html'"-->
<!-->-->
<!--</div>-->
</body>
</html>