1
0
Fork 0
template_engine_comparison/templates/handlebars/big.handlebars

26 lines
407 B
Handlebars

<!DOCTYPE html>
<html>
<head>
<title>Customers List</title>
</head>
<body>
{{#each customers}}
<dl>
<dt>Name:</dt>
<dd>{{name}}</dd>
<dt>Age:</dt>
<dd>{{age}}</dd>
<dt>Address:</dt>
<dd>
{{zip}}
{{country}}
{{city}}
{{address}}
</dd>
<dt>Employer:</dt>
<dd>{{employer}}</dd>
</dl>
{{/each}}
</body>
</html>