lektor-website/content/docs/api/db/query/count/contents.lr
2016-01-10 15:51:25 -05:00

17 lines
314 B
Markdown

title: count
---
summary: Counts the total number of records a query matches.
---
type: method
---
body:
This is a simple way to count the total number of items a query matches.
## Example
```html+jinja
{% set project_count = site.query('/projects').count() %}
<p>We built {{ project_count }} projects.</p>
```