-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganism.html
63 lines (52 loc) · 1.19 KB
/
organism.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
51
52
53
54
55
56
57
58
59
60
61
62
63
<head>
<title>organism</title>
</head>
<body>
<div class="nav">
<span class="W25 left">{{> creator }}</span>
<span class="W50 left">
{{> storage }}
</span>
<span class="W25 left">
{{> dell }}
</span>
</div>
<ul>
{{#each lives }}
{{> life }}
{{/ each }}
</ul>
<br>
<div class="box">{{> mating }}</div>
</body>
<template name="creator">
<form id="cre">
<input id="t" type="text" class="white">
<button class="butts" id="b">Create</button>
</form>
</template>
<template name="mating">
<div id="matespace">
<div id="lb1" class="lifebub">
<img id="lbi1" src="" class="zypic">
</div>
<div id="lb2" class="lifebub">
<img id="lbi2" src="" class="zypic">
</div>
<button class="butts" id="mate">Mate</button>
</div>
</template>
<template name="life">
<img id="{{ _id }}" class="pic bub" src="{{ img }}">
</template>
<template name="dell">
<div id="deli">
<div id="byebye">
</div>
</div>
</template>
<template name="storage">
<span class="W33 left storebox" id="s1"></span>
<span class="W33 left storebox" id="s2"></span>
<span class="W33 left storebox" id="s3"></span>
</template>