diff options
Diffstat (limited to 'testing/templates')
-rw-r--r-- | testing/templates/deep-import-child.html | 4 | ||||
-rw-r--r-- | testing/templates/deep-import-parent.html | 2 | ||||
-rw-r--r-- | testing/templates/deep-nested-macro.html | 4 |
3 files changed, 8 insertions, 2 deletions
diff --git a/testing/templates/deep-import-child.html b/testing/templates/deep-import-child.html new file mode 100644 index 0000000..268d6d0 --- /dev/null +++ b/testing/templates/deep-import-child.html @@ -0,0 +1,4 @@ +{%- import "nested-macro.html" as libi -%} +{%- macro parent() -%} + {% call libi::parent() %} +{%- endmacro -%} diff --git a/testing/templates/deep-import-parent.html b/testing/templates/deep-import-parent.html new file mode 100644 index 0000000..6aa6009 --- /dev/null +++ b/testing/templates/deep-import-parent.html @@ -0,0 +1,2 @@ +{%- import "deep-import-child.html" as libj -%} +{% call libj::parent() %} diff --git a/testing/templates/deep-nested-macro.html b/testing/templates/deep-nested-macro.html index 39e8e91..c34dd5f 100644 --- a/testing/templates/deep-nested-macro.html +++ b/testing/templates/deep-nested-macro.html @@ -1,2 +1,2 @@ -{%- import "nested-macro.html" as libk -%} -{%- call libk::parent() -%} +{%- import "nested-macro.html" as libi -%} +{%- call libi::parent() -%} |