I try to use a simple loop, in my real code this loop is more complex, and I need to break this iteration like:
break
{% for post in posts %} {% i
From @NHG comment — works perfectly
{% for post in posts|slice(0,10) %}