-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (34 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>Shopping Cart with Backbone</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<form id="add">
<label>Title</label>
<input id="title" type="text" />
<label>Price</label>
<input id="price" type="text" />
<input type="submit" value="save" />
</form>
<form id="filter">
<label>Less Than</label>
<input type="text" id="less-than" />
<input type="submit" value="Filter" />
</form>
<a href="#" id="clear-filter">Clear Filter</a>
<div id="yourcart"></div>
<script id="itemTemplate" type="text/template">
<img src="<%= photo %>" alt="<%= title %>">
<div>
<h2><%= title %></h2>
<h4>£<%= price %></h4>
</div>
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/underscore.js"></script>
<script src="js/backbone.js"></script>
<script src="js/cart.js"></script>
</body>
</html>