summaryrefslogtreecommitdiff
path: root/packages/fcl-mustache/examples/family.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'packages/fcl-mustache/examples/family.tmpl')
-rw-r--r--packages/fcl-mustache/examples/family.tmpl22
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/fcl-mustache/examples/family.tmpl b/packages/fcl-mustache/examples/family.tmpl
new file mode 100644
index 0000000000..b6174cfcfe
--- /dev/null
+++ b/packages/fcl-mustache/examples/family.tmpl
@@ -0,0 +1,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>