lektor-website/content/docs/api/db/query/count/contents.lr

17 lines
310 B
Plaintext
Raw Normal View History

2015-12-19 14:52:17 +01:00
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.
```