-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (66 loc) · 3.09 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html>
<head>
<!-- Metadata. -->
<title>New York Times Book Reviews</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Libraries. -->
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.js"></script>
<script src = "http://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular-route.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="src/js/app.js"></script>
<script src="src/js/router.js"></script>
<script src="src/js/controllers/genres-controller.js"></script>
<script src="src/js/controllers/genre-controller.js"></script>
<script src="src/js/controllers/book-controller.js"></script>
<!-- Stylesheets. -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="src/css/NYTMovieReviews.css">
<!-- Analytics. -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-73229371-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body ng-app="NYTBookReviews">
<!-- Header. -->
<nav class="navbar navbar-default navbar-fixed-top dark text-center">
<div class="container">
<h1 class="logo-text dark nyt">
The New York Times
<br>
<small>
Book Reviews
</small>
</h1>
</div>
</nav>
<!-- Main content. -->
<div class="v-space"></div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div ng-view></div>
</div>
</div>
</div>
<div class="v-space"></div>
<!-- Footer. -->
<nav class="navbar navbar-default navbar-fixed-bottom dark text-center">
<div class="container">
<h5 class="logo-text">
Powered by <a href="http://developer.nytimes.com/page" target="_blank"><span class="nyt">New York Times</span> API</a>
</h5>
</div>
</nav>
</body>
</html>