-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (27 loc) · 968 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE HTML>
<html>
<head>
<title>
Yahoo News Reader
</title>
<link rel="stylesheet" type="text/css" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./app/styles/main.css">
</head>
<body ng-app="newsReaderApp">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Yahoo News Reader</a>
</div>
</div>
</nav>
<div ng-view></div>
<script src="scripts/angular.js"></script>
<script src="scripts/angular-route.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular-sanitize.js"></script>
<script src="app/app.js"></script>
<script src="app/controllers/CategoriesController.js"></script>
<script src="app/controllers/NewsController.js"></script>
<script src="app/services/newsFactory.js"></script>
</body>
</html>