forked from techdev-solutions/trackr-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 1.3 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
<!doctype html>
<html>
<head>
<title>trackr</title>
<base href="/trackr/">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="src/vendor/bootstrap/dist/css/bootstrap.min.css"/>
<!-- build:css(.) src/css/trackr.css -->
<link rel="stylesheet" href="src/css/notification.css" type="text/css"/>
<link type="text/css" href="src/css/trackr.css" rel="stylesheet" media="screen"/>
<link type="text/css" href="src/modules/reportr/charts/charts.css" rel="stylesheet" media="screen"/>
<!-- endbuild -->
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic" rel="stylesheet" type="text/css" />
<link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" />
<!-- process:remove -->
<script type="text/javascript" data-main="bootstrap" src="src/vendor/requirejs/require.js"></script>
<!-- /process -->
<!-- process:insert -->
<!-- This won't get loaded as long as the first data-main script is there, so it's only activated in production -->
<script type="text/javascript" data-main="./bootstrap.prod" src="src/vendor/requirejs/require.js"></script>
<!-- /process -->
</head>
<body id="app">
<div ui-view="root"></div>
</body>
</html>