-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (37 loc) · 980 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/rottenapp.css"/>
<title>Upcoming Rotten Tomatoes</title>
</head>
<body>
<div id="rottenapp">
<header>
<h1>Upcoming Rotten Tomatoes</h1>
</header>
<section id="main">
<ul id="movie-list"></ul>
</section>
<footer>
<p>Created by Cory Klein</p>
</footer>
</div>
<script src="js/jquery-2.0.3.js"></script>
<script src="js/underscore.js"></script>
<script src="js/backbone.js"></script>
<script src="js/rotten.js"></script>
<!-- Templates -->
<script type="text/template" id="item-template">
<div class="view content">
<img src="<%- poster %>" class="movie-poster" />
<h3 class="movie-title"><%- title %></h3>
<%- synopsis %>
</div>
<br style="clear:both">
</script>
<script type="text/template" id="count-template">
<div class="count-number"><b><%= remaining %></b> <%= remaining == 1 ? 'item' : 'items' %> left</div>
</script>
</body>
</html>