-
Notifications
You must be signed in to change notification settings - Fork 3
/
webcamdashboard.html
27 lines (24 loc) · 1.07 KB
/
webcamdashboard.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
<!DOCTYPE html>
<html>
<head>
<title>Webcam Dashboard</title>
<link rel="stylesheet" href="static/style.css" media="screen" title="no title" charset="utf-8">
<link rel="icon" type="image/png" href="static/favicon.ico">
</head>
<body ng-app="weatherstation">
<div class='webcam-container' ng-controller='webcamDashboardCtrl'>
<div ng-repeat='webcam in webcams' class='webcam'>
<a href="{{webcam}}" target="_blank"><img ng-src="{{webcam}}"></a>
</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>
</body>
</html>