aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/templates/deep-base.html14
-rw-r--r--testing/templates/deep-kid.html10
-rw-r--r--testing/templates/deep-mid.html19
3 files changed, 43 insertions, 0 deletions
diff --git a/testing/templates/deep-base.html b/testing/templates/deep-base.html
new file mode 100644
index 0000000..0d874ac
--- /dev/null
+++ b/testing/templates/deep-base.html
@@ -0,0 +1,14 @@
+{% import "macro.html" as libb %}
+<html>
+ <head>
+ {% block head %}
+ <style></style>
+ {% endblock %}
+ </head>
+ <body>
+ {% block body %}
+ {% call libb::thrice("nav") %}
+ Copyright {{ year }}
+ {% endblock %}
+ </body>
+</html>
diff --git a/testing/templates/deep-kid.html b/testing/templates/deep-kid.html
new file mode 100644
index 0000000..a2aa105
--- /dev/null
+++ b/testing/templates/deep-kid.html
@@ -0,0 +1,10 @@
+{% extends "deep-mid.html" %}
+{% import "macro.html" as libk %}
+
+{% block head %}
+ <script></script>
+{% endblock %}
+
+{% block content %}
+ {% call libk::thrice(item) %}
+{% endblock %}
diff --git a/testing/templates/deep-mid.html b/testing/templates/deep-mid.html
new file mode 100644
index 0000000..76ab7e6
--- /dev/null
+++ b/testing/templates/deep-mid.html
@@ -0,0 +1,19 @@
+{% extends "deep-base.html" %}
+{% import "macro.html" as libm %}
+
+{% block head %}
+ {{ title }}
+{% endblock %}
+
+{% block body %}
+ <div id="wrap">
+ <section id="content">
+ {% block content %}
+ No content found
+ {% endblock %}
+ </section>
+ <section id="nav">
+ {% call libm::thrice("nav") %}
+ </section>
+ </div>
+{% endblock %}