> ## 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.

# {{#isNotEmpty}}

- URL: https://getpublii.com/dev/isnotempty/
- Published: 2017-08-04T22:23:26.522Z
- Updated: 2024-02-08T11:46:41.845Z
- Description: Checks if the given collection is not empty. Syntax: {{#isNotEmpty COLLECTION}} If COLLECTION is not empty {{else}} If COLLECTION is empty {{/isNotEmpty}} Example: {{#isNotEmpty tags}}…
- Author: Tomasz Dziuda
- Tags: Helpers

Checks if the given collection is not empty.

Syntax:

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

Example:

```handlebars
{{#isNotEmpty tags}}
Tags list output
{{/isNotEmpty}}
```
