diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-06-22 16:03:53 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-06-22 16:13:08 +0200 |
commit | 3d75bcfe786e23be26302c5d39658d75d19468b7 (patch) | |
tree | 6c5b4013d46b9525c27c266a7ad5871f80bfde6a /testing/templates/deep-base.html | |
parent | 21edd48917baf57728adf7fd7693741f84b85402 (diff) | |
download | askama-3d75bcfe786e23be26302c5d39658d75d19468b7.tar.gz askama-3d75bcfe786e23be26302c5d39658d75d19468b7.tar.bz2 askama-3d75bcfe786e23be26302c5d39658d75d19468b7.zip |
Add test for deep inheritance
Diffstat (limited to 'testing/templates/deep-base.html')
-rw-r--r-- | testing/templates/deep-base.html | 14 |
1 files changed, 14 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> |