-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (41 loc) · 1.36 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Shopping application</title>
<link href="css/layout.css" rel="stylesheet" media="all"/>
</head>
<body>
<div id="wrap">
<ul id="default-item-list"></ul>
<div class="right-column">
<img src="img/GAHK_logo.png" alt="GAHK" id="gahk-logo">
<h2 id="basket-message">Du har valgt <span id="basket">0</span> varer</h2>
<table id="shopping-cart">
<tbody id="shopping-list"></tbody>
<tfoot>
<tr>
<td colspan="5" id="total">0.00</td>
</tr>
</tfoot>
</table>
</div>
</div>
<script type="text/template" id="tmp-shoppingListItem">
<img src='img/<%= url %>.jpg'>
<a class="name"><%= title %></a>
<span class="price"><%= price.toFixed(2) %></span>
</script>
<script type="text/template" id="tmp-shoppingCartItem">
<td class="name"><%= title %></td>
<td><a class="quantity" data-type="decrease"></a></td>
<td class="quantity-total"><%= quantity %> </td>
<td><a class="quantity" data-type="increase"></a></td>
<td class="sub-total"><%= total.toFixed(2) %></td>
</script>
<script src="js/libs/jquery-min.js"></script>
<script src="js/libs/underscore-min.js"></script>
<script src="js/libs/backbone-min.js"></script>
<script src="js/app.js"></script>
</body>
</html>