v1.9.1
Executes a block of code only if a certain condition is true.
if
Input
{% if product.title == "Awesome Shoes" %} |
Output
These shoes are awesome! |
elsif / else
Adds more conditions within an if or unless block.
Input
<!-- If customer.name = "anonymous" --> |
Output
Hey Anonymous! |