diff options
Diffstat (limited to '')
-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> |