-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.14 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.14 KB
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
<!doctype html>
<html ng-app="myApp">
<head>
<script src="js/vendor/custom.modernizr.js"></script>
<script src="js/vendor/angular.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/foundation.min.css"/>
<link rel="stylesheet" type="text/css" href="css/styles.css"/>
</head>
<body ng-controller="FrameController">
<div class="row">
<h1>NPR player</h1>
</div>
<div class="container row">
<div class="large-8 small-8 columns">
<h2>Player</h2>
<div ng-controller="PlayerController">
{{ programs }}
</div>
</div>
<div class="large-4 small-4 columns" ng-controller="RelatedController">
<h2>Related content</h2>
</div>
</div>
<script>
document.write('<script src=js/vendor/'
+ ('__proto__' in {} ? 'zepto' : 'jquery')
+ '.js><\/script>');
</script>
<script src="js/vendor/foundation.min.js"></script>
<script src="js/beginner.js"></script>
<script type="text/javascript">
$(document).foundation();
</script>
</body>
</html>