aboutsummaryrefslogtreecommitdiff
path: root/tests/data/inheritance-depth-2
diff options
context:
space:
mode:
Diffstat (limited to 'tests/data/inheritance-depth-2')
-rw-r--r--tests/data/inheritance-depth-2/base.tmpl9
-rw-r--r--tests/data/inheritance-depth-2/one.tmpl9
-rw-r--r--tests/data/inheritance-depth-2/two.tmpl5
3 files changed, 23 insertions, 0 deletions
diff --git a/tests/data/inheritance-depth-2/base.tmpl b/tests/data/inheritance-depth-2/base.tmpl
new file mode 100644
index 0000000..2f5157c
--- /dev/null
+++ b/tests/data/inheritance-depth-2/base.tmpl
@@ -0,0 +1,9 @@
+0
+
+{%- block content %}
+0
+{%- endblock %}
+
+{%- block footer %}
+0
+{%- endblock -%} \ No newline at end of file
diff --git a/tests/data/inheritance-depth-2/one.tmpl b/tests/data/inheritance-depth-2/one.tmpl
new file mode 100644
index 0000000..1e93d11
--- /dev/null
+++ b/tests/data/inheritance-depth-2/one.tmpl
@@ -0,0 +1,9 @@
+{% extends "base.tmpl" %}
+
+{% block content %}
+1
+{% endblock %}
+
+{% block footer %}
+1
+{% endblock %} \ No newline at end of file
diff --git a/tests/data/inheritance-depth-2/two.tmpl b/tests/data/inheritance-depth-2/two.tmpl
new file mode 100644
index 0000000..cbdbe34
--- /dev/null
+++ b/tests/data/inheritance-depth-2/two.tmpl
@@ -0,0 +1,5 @@
+{% extends "one.tmpl" %}
+
+{% block footer %}
+2
+{% endblock %} \ No newline at end of file