Fixed typo in the example code of the query method.

This commit is contained in:
buckket 2016-01-08 14:06:28 +01:00
parent a9668698c6
commit a5fb11727f
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ and will also include hidden pages.
```html+jinja
<ul>
{% for project in site.query('/projects') %]
{% for project in site.query('/projects') %}
<li>{{ project.name }}: {{ project.year }}
{% endfor %}
</ul>