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-kid.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 testing/templates/deep-kid.html (limited to 'testing/templates/deep-kid.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 %} + +{% endblock %} + +{% block content %} + {% call libk::thrice(item) %} +{% endblock %} -- cgit