-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtryme.html
48 lines (41 loc) · 810 Bytes
/
tryme.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
<head>
<title>meteortest</title>
</head>
<template name="exercising">
<h1>It is 7.16</h1>
<h2>This day's job</h2>
{{>names}}
<h3>Just try</h3>
{{>staff}}
<strong>now: {{>nowdate}}</strong>
</template>
<template name="names">
<h4>Try to imput your name in the box below</h4>
<imput>{{imputname}}</imput>
<ul>
{{#each vistornames}}
<li>{{this}}</li>
{{/each}}
</ul>
<h5>author is {{myname}}</h5>
<p> {{date}} </p>
</template>
<template name="staff">
<p>In my team, there're {{person.length}} members</p>
<ul>
{{#each person}}
<h5>{{firstname}}</h5>
<li>{{>girl}}</li>
{{/each}}
</ul>
</template>
<template name="girl">
{{#if executive}}
<strong>{{sex}}</strong>
{{else}}
{{sex}}
{{/if}}
</template>
<template name="nowdate">
{{newdate}}
</template>