diff options
Diffstat (limited to '')
-rw-r--r-- | testing/templates/include.html | 3 | ||||
-rw-r--r-- | testing/templates/included.html | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/testing/templates/include.html b/testing/templates/include.html new file mode 100644 index 0000000..cdafbad --- /dev/null +++ b/testing/templates/include.html @@ -0,0 +1,3 @@ +{% for s in strs -%} + {% include "included.html" %} +{%- endfor %} diff --git a/testing/templates/included.html b/testing/templates/included.html new file mode 100644 index 0000000..ff10488 --- /dev/null +++ b/testing/templates/included.html @@ -0,0 +1 @@ +INCLUDED: {{ s }} |