summaryrefslogtreecommitdiffstats
path: root/examples/basic/templates/broken.html
blob: 294d5c99894d9fca10a044baf0c33f32ac80d32a (plain)
1
2
3
4
5
6
{% from 'subbroken.html' import may_break %}
<ul>
{% for item in seq %}
  <li>{{ may_break(item) }}</li>
{% endfor %}
</ul>