> ## Content Index
> Fetch the complete content index at: https://getpublii.com/dev/llms.txt
> Use this file to discover other available public pages before exploring further.

# {{#isEmpty}} helper

- URL: https://getpublii.com/dev/isempty-helper/
- Published: 2017-08-04T22:22:07.345Z
- Updated: 2024-02-08T11:47:43.827Z
- Description: Checks if the given collection is empty. Syntax: {{#isEmpty COLLECTION}} If COLLECTION is empty {{else}} If COLLECTION is not empty {{/isEmpty}} Example: {{#isEmpty tags}} No…
- Author: Tomasz Dziuda
- Tags: Helpers

Checks if the given collection is empty.

Syntax:

```handlebars
{{#isEmpty COLLECTION}}
   If COLLECTION is empty
{{else}}
   If COLLECTION is not empty
{{/isEmpty}}
```

Example:

```handlebars
{{#isEmpty tags}}
   No tags
{{/isEmpty}}
```
