summaryrefslogtreecommitdiff
path: root/examples/www
diff options
context:
space:
mode:
Diffstat (limited to 'examples/www')
-rw-r--r--examples/www/index.mustache6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/www/index.mustache b/examples/www/index.mustache
index 04d0632..9933064 100644
--- a/examples/www/index.mustache
+++ b/examples/www/index.mustache
@@ -5,9 +5,9 @@
<body>
{{meta.project}}
<ul>
- {{#projects}}
- <li>{{id}}</li>
- {{/projects}}
+ {% for project in projects %}
+ <li>{{project.id}}</li>
+ {% endfor %}
</ul>
</body>
</html>