-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·33 lines (25 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Page title -->
<title>Pollman Client</title>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!--<link rel="shortcut icon" type="image/ico" href="favicon.ico" />-->
<link rel="stylesheet" href="css/style.css">
<script src="js/dist/base64.min.js" type="text/javascript"></script>
<script src="js/dist/deflate.min.js" type="text/javascript"></script>
<script src="js/dist/angular.min.js" type="text/javascript"></script>
<script src="js/dist/angular-ui-router.min.js" type="text/javascript"></script>
<script src="js/dist/mask.min.js"></script>
<script src="js/config.js" type="text/javascript"></script>
<script src="js/app.js" type="text/javascript"></script>
<script src="js/controllers.js" type="text/javascript"></script>
<script src="js/services.js" type="text/javascript"></script>
</head>
<body ng-app="anketbazApp">
<div ui-view></div>
</body>
</html>