Templates
Template Variables
Using dynamic merge tags, conditional logic, and loops in templates.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Using dynamic merge tags, conditional logic, and loops in templates.
<p>Hello {{ user.first_name | default: "there" }},</p>
<p>Your order #{{ order.id }} has shipped!</p>
{% if order.is_gift %}
<p>Gift message: {{ order.gift_note }}</p>
{% endif %}
<ul>
{% for item in order.items %}
<li>{{ item.name }} - ${{ item.price }}</li>
{% endfor %}
</ul>