forked from foundersandcoders/MonkeyPhone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (52 loc) · 2.1 KB
/
index.html
File metadata and controls
60 lines (52 loc) · 2.1 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>An API request</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<style type="text/css">
h1 {font-size: 15px;}
</style>
<!-- AngularJS libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>
<script src="https://code.angularjs.org/1.2.28/angular-route.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.0-beta.1/angular-sanitize.js"></script
</head>
<body ng-app="NewsApp">
<div class="container">
<div class="page-header">
<h1 class="header-font">The Guardian <small>Technology</small></h1>
</div>
<div class ="content">
<div class="row">
<div class="content">
<!-- Load AngularJS View -->
<div ng-view></div>
<div class="right-column">
<div class="hidden-xs">
<div class="col-md-3">
<img src="img/right-column.jpg" />
</div>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>The Guardian - Technology</p>
</div>
</div>
<!-- Modules -->
<script src="js/app.js"></script>
<!-- Controllers -->
<script src="js/controllers/HomeController.js"></script>
<script src="js/controllers/NewsController.js"></script>
<!-- Services -->
<script src="js/services/news.js"
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- <script src="js/apiquery.js"></script> -->
</body>
</html>