-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.25 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<!-- Angular application scope with data-ng-app -->
<html lang="en" data-ng-app="myApp">
<head>
<meta charset="utf-8">
<title>index</title>
</head>
<body>
<!-- Video html5 element -->
<video id="myvideo" width="320" height="180" controls>
<source src="http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4" type="video/mp4" />
</video>
<!-- Angular controller -->
<div ng-controller="MoreContentController" class="more-content-controller">
<!-- Angular directive -->
<more-content></more-content>
</div>
<!-- Angular vendor scripts -->
<script src="bower_components/angular/angular.js" ></script>
<script src="bower_components/angular-route/angular-route.js" ></script>
<script src="bower_components/angular-sanitize/angular-sanitize.js" ></script>
<!-- Angular application script -->
<script src="app/main.js" ></script>
<script src="app/controllers/MoreContentController.js" ></script>
<script src="app/services/MoreContentServices.js" ></script>
<script src="app/directives/MoreContentDirective.js" ></script>
<!-- Popcorn library -->
<script src="vendors/popcorn.js" ></script>
<!-- Popcorn custom plugin -->
<script src="plugins/popcorn.moreContent.js" ></script>
</body>
</html>