<!---- Nunjuck If ------------------------------------------------------>
{% if variable %}
It is true
{% endif %}
<!------------------------------------------------------ Nunjuck If ---->
<!---- Nunjucks if/elseif/else ----------------------------------------->
{% if hungry %}
I am hungry
{% elif tired %}
I am tired
{% else %}
I am good!
{% endif %}
<!----------------------------------------- Nunjucks if/elseif/else ---->