1
0

Add Mustache

This commit is contained in:
2013-12-14 03:29:37 +07:00
parent babdc13c79
commit 0425c8bac9
6 changed files with 113 additions and 32 deletions
+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Customers List</title>
</head>
<body>
{{# 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>
{{/ customers }}
</body>
</html>