-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
22 lines (19 loc) · 901 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html ng-app="rSlashVideos">
<head>
<title>rSlashVideos</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="./app/stylesheets/style.css"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script type="text/javascript" src="./app/app.js"></script>
<!-- Services -->
<script type="text/javascript" src="./app/services/playService.js"></script>
<!-- Controllers -->
<script type="text/javascript" src="./app/controllers/playCtrl.js"></script>
</head>
<body>
<div ng-include="'./app/views/home.html'"></div>
</body>
</html>