-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
27 lines (24 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title>Weather Station</title>
<link rel="stylesheet" href="static/style.css" media="screen" title="no title" charset="utf-8">
<link href='//fonts.googleapis.com/css?family=Noticia+Text' rel='stylesheet' type='text/css'>
<link rel="icon" type="image/png" href="static/favicon.ico">
</head>
<body ng-app="weatherstation">
<div ng-controller='channelRotationCtrl'>
<div ng-view id="viewframe"></div>
</div>
<script src="static/libs/angular.min.js"></script>
<script src="static/libs/skycons.js"></script>
<script src="static/libs/angular-skycons.js"></script>
<script src="static/libs/angular-route.js"></script>
<script src="static/libs/highcharts.js"></script>
<script src="static/libs/highcharts-ng.js"></script>
<script src="static/app/app.js"></script>
<script src="static/app/config.js"></script>
<script src="static/app/controllers.js"></script>
<script src="static/app/routes.js"></script>
</body>
</html>