-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoverview.html
More file actions
94 lines (74 loc) · 2.18 KB
/
overview.html
File metadata and controls
94 lines (74 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<title>Dinner planner</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<header class="col-xs-12">
<h1>Dinner Planner</h1>
</header>
</div>
</div>
<div id="overview_dinner">
<div class="short_intro">
<div class="short_info">
<p>My Dinner: <span id="numberList"></span> people</p>
<button type="button" name="button"class="deliver">Go back and edit dinner</button>
</div>
</div>
</div>
<div class="dish_list" id="dish_list">
<!-- <div class="toast">
<div class="brief">
Toast
</div>
<p>77.20 SEK</p>
</div>
<div class="icecream">
<div class="brief">
Ice Cream
</div>
<p>77.20 SEK</p>
</div>
<div class="meatballs">
<div class="brief">
Meat Balls
</div>
<p>77.20 SEK</p>
</div>
<span class="vl"></span>
<div class="total">
<div class="sum">
<p>Total:</p>
<p>231.6 SEK</p>
</div>
</div> -->
</div>
<hr class="style14">
<div class="print">
<button type="button" name="button" class="deliver">Print Full Recipe</button>
</div>
</body>
</html>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- Bootstrap JavaScript, needed if you want for instance tabs, models, popovers etc. -->
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<!-- The application JavaScript code -->
<script src="js/app.js"></script>
<script src="js/model/dinnerModel.js"></script>
<script src="js/view/exampleView.js"></script>
<script src="js/view/search.js"></script>
<script src="js/view/over.js"></script>
<script src="js/view/description.js"></script>
<script src="js/view/money.js"></script>
<script src="js/view/planner.js"></script>
<script src="js/view/first.js"></script>