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-mid.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 testing/templates/deep-mid.html (limited to 'testing/templates/deep-mid.html') 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 %} +
+
+ {% block content %} + No content found + {% endblock %} +
+ +
+{% endblock %} -- cgit