aboutsummaryrefslogtreecommitdiff
path: root/examples/basic/templates/broken.html
diff options
context:
space:
mode:
Diffstat (limited to 'examples/basic/templates/broken.html')
-rw-r--r--examples/basic/templates/broken.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/basic/templates/broken.html b/examples/basic/templates/broken.html
new file mode 100644
index 00000000..294d5c99
--- /dev/null
+++ b/examples/basic/templates/broken.html
@@ -0,0 +1,6 @@
+{% from 'subbroken.html' import may_break %}
+<ul>
+{% for item in seq %}
+ <li>{{ may_break(item) }}</li>
+{% endfor %}
+</ul>