diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/www/index.mustache | 6 |
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> |
