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

# {{#checkIfNone}} helper

- URL: https://getpublii.com/dev/checkifnone-helper/
- Published: 2017-08-04T22:29:37.553Z
- Updated: 2024-02-08T09:39:07.940Z
- Description: Block helper which is negation of the #checkIfAll helper. Syntax: {{#checkIfNone ARG\_1 ARG\_2 ARG\_3 ... ARG\_N}} Code displayed when above condition is true {{else}} Code…
- Author: Tomasz Dziuda
- Tags: Helpers

Block helper which is negation of the **#checkIfAll** helper.

Syntax:

```handlebars
{{#checkIfNone ARG_1 ARG_2 ARG_3 ... ARG_N}}
Code displayed when above condition is true
{{else}}
Code displayed when above condition is false
{{/checkIfNone}}
```

**Example:**

```handlebars
{{#checkIfNone author tags}}
Block displayed when author data and tags data are empty
{{/checkIfNone}}
```
