{{#checkIfNone}} helper
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 displayed when above condition is false
{{/checkIfNone}}
Example:
{{#checkIfNone author tags}}
Block displayed when author data and tags data are empty
{{/checkIfNone}}