{% assign username = "John G. Chalmers-Smith" -%}
{%- if username and username.size > 10 -%}
Wow, {{ username -}} , you have a long name!
{%- else -%}
Hello there!
{%- endif %}
{% for item in array limit:2 offset:2 %}
{{ item }}
{% endfor %}
{% for i in (3..5) %}
{{ i }}
{% endfor %}
{% assign num = 4 %}
{% assign range = (1..num) %}
{% for i in range reversed %}
{{ i }}
{% endfor %}
{% liquid
# this is a comment
assign topic = 'Learning about comments!'
echo topic
%}
{% # comment %}
{% raw %}
In Handlebars, {{ this }} will be HTML-escaped, but {{{ that }}} will not.
{% endraw %}