{% if shipping_method.title == 'International Shipping' %}
You're shipping internationally. Your order should arrive in 2–3 weeks.
{% elsif shipping_method.title == 'Domestic Shipping' %}
Your order should arrive in 3–4 days.
{% else %}
Thank you for your order!
{% endif %}
{% if name == 'John' %}
Hello, John
{% elsif name == 'Leo' %}
Hello, Leo
{% else %}
Hello, stranger.
{% endif %}
{% if product.available %}
<h2>Price: £99.99</h2>
{% else %}
<h2 class=“sold-out”>Sorry - sold out</h2>
{% endif %}