Nunjucks: ‘if’ with multiple ‘and’ or ‘or’ condition
Answer: As we know Nunjucks is inspired by Jinja2 python’s template engine, the if statement is similar to it. // And Snippet {% if (VARIABLE > 10) and (VARIABLE < 20) %} // {% endif %} // Or Snippet {% if (VARIABLE == 10) or (VARIABLE == 20) %} // {% endif %} Thats it … Read more