summaryrefslogtreecommitdiff
path: root/packages/fcl-mustache/examples/family.tmpl
blob: b6174cfcfef97af10a930ce19f0446f7820a7915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
  <head>
    <title>{{title}}</title>
  </head>
    <body>
      <h1>Family members</h1>
      <table>
        <thead>
          <tr>
            <th>Name</th><th>Age</th>
          </tr>
        </thead>
        <tbody>
{{#data}}
        <tr>  
          <td>{{name}}</td><td>{{age}}</td>
        </tr> 
{{/data}}
        </tbody>
      </table>
    </body>
</html>