{{ hello }} It's currently {% now | date_format: "dd MMM yyyy 'at' HH:mm:ss" %} Nested variable: {{ foo.bar }} {% for dude in guys %} Current dude is {{ dude | uppercase }}... {% if currentLoop.currentIndex == 0 %} (the best!) {% comment %} Should only happen for Matt {% /comment %} {% for 1 to 5 %}*{% /for %} {% /if %} {%/for%} Last of the {{ guys.@count }} guys was {{ guys.@lastObject | capitalized }} Markers look like {{ engine.delimiters.markerStart }} this {{ engine.delimiters.markerEnd }} Variables look like {{ engine.delimiters.expressionStart }} this {{ engine.delimiters.expressionEnd }} Filter delimiter is {{ engine.delimiters.filter }} We also know about {{ YES }} and {{ NO }} or {{ true }} and {{ false }} Is 1 less than 2? {% if 1 < 2 %} Yes! {% else %} No? {% /if %} {% literal %}This text won't be {% now %} interpreted.{% /literal %} And we're done.