mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-08 10:39:29 +02:00
23 lines
374 B
Cheetah
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>
|