aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-02-04 10:59:35 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-02-04 10:59:35 +0100
commit504a5f41b3e33a45ed14598d2603277ad5b1a355 (patch)
tree3c5a113d6751328ae809ca00a71f482c2ecbe157 /testing/templates
parent4eb124b7730630bf05dfe1f34f69af4f4f5b67a3 (diff)
downloadaskama-504a5f41b3e33a45ed14598d2603277ad5b1a355.tar.gz
askama-504a5f41b3e33a45ed14598d2603277ad5b1a355.tar.bz2
askama-504a5f41b3e33a45ed14598d2603277ad5b1a355.zip
Add basic support for loops
Diffstat (limited to 'testing/templates')
-rw-r--r--testing/templates/for.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/templates/for.html b/testing/templates/for.html
new file mode 100644
index 0000000..c38e6bb
--- /dev/null
+++ b/testing/templates/for.html
@@ -0,0 +1,3 @@
+{% for s in strings %}
+ {{ s }}
+{% endfor %}