summaryrefslogtreecommitdiff
path: root/templates/profile.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'templates/profile.hbs')
-rw-r--r--templates/profile.hbs22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/profile.hbs b/templates/profile.hbs
new file mode 100644
index 0000000..240c443
--- /dev/null
+++ b/templates/profile.hbs
@@ -0,0 +1,22 @@
+{{#*inline "page"}}
+{{#if user}}
+ <p>Profile for {{ user }}</p>
+{{/if}}
+<table>
+ <thead>
+ {{#each headings}}
+ <th>{{ this }}</th>
+ {{/each}}
+ </thead>
+ <tbody>
+ {{#each entries}}
+ <tr>
+ {{#each this}}
+ <td>{{ this }}</td>
+ {{/each}}
+ </tr>
+ {{/each}}
+ </tbody>
+</table>
+{{/inline}}
+{{~> (parent)~}}