-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (50 loc) · 2.04 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
53
54
55
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="browser-ie7 lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="browser-ie8 lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="browser-ie9 lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="browser-modern"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Code Utah</title>
<!-- <base href="/"> -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="node_modules/normalize.css/normalize.css">
<link rel="stylesheet" href="assets/css/text.css">
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/events.css">
<!-- vendor -->
<script src="node_modules/lodash/index.js"></script>
<script src="node_modules/angular/angular.min.js"></script>
<script src="node_modules/angular-route/angular-route.min.js"></script>
<script src="node_modules/angular-aria/angular-aria.min.js"></script>
</head>
<body ng-app="app" ng-strict-di>
<header>
<nav>
<ul>
<li><a href="/#/">Home</a></li>
<li><a href="/#/events">Events</a></li>
<li><a href="/#/projects">Projects</a></li>
</ul>
</nav>
</header>
<!-- view -->
<div ng-view></div>
<script src="node_modules/ng-stats/dist/ng-stats.min.js"></script>
<script>
setTimeout(function () {
showAngularStats({
position: 'bottomright',
digestTimeThreshold: 16,
autoload: true,
logDigest: true,
logWatches: true
});
}, 100);
</script>
<!-- app -->
<script src="app/modules/base/main.js"></script>
<script src="app/modules/base/routes.js"></script>
</body>
</html>