-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_fridge.html
49 lines (42 loc) · 952 Bytes
/
my_fridge.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
<head>
<title>my_fridge</title>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
</head>
<body>
<h1>Welcome to Fridge | <i>Meteor in Action</i></h1>
{{> container}}
</body>
<template name="container">
<div class="conatiner">
<div class="left">
{{> fridge}}
</div>
<div class="right">
{{> productList}}
</div>
</div>
</template>
<template name="fridge">
<div id="fridge">
<img class="image-responsive" src="/empty-fridge.jpg" />
<ul>
{{#each products}}
<li>{{> productListItem}}</li>
{{/each}}
</ul>
</div>
</template>
<template name="productList">
<div id="supermarket" class="box">
<ul id="products">
{{#each products}}
<li>{{> productListItem}}</li>
{{/each}}
</ul>
</div>
</template>
<template name="productListItem">
<img src="{{img}}"
data-id="{{_id}}"
class="image-responsive product-image draggable" />
</template>