fpc/packages/fcl-mustache/examples/family.tmpl
michael 5e2bf25790 * Mustache templates implementation
git-svn-id: trunk@49240 -
2021-04-20 11:39:30 +00:00

23 lines
374 B
Cheetah

<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>