From 3d75bcfe786e23be26302c5d39658d75d19468b7 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 22 Jun 2018 16:03:53 +0200 Subject: Add test for deep inheritance --- testing/templates/deep-base.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 testing/templates/deep-base.html (limited to 'testing/templates/deep-base.html') 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 %} + + + {% block head %} + + {% endblock %} + + + {% block body %} + {% call libb::thrice("nav") %} + Copyright {{ year }} + {% endblock %} + + -- cgit