This commit is contained in:
bzick
2015-06-03 00:13:09 +03:00
parent e0fc70b751
commit c2751e069c
5 changed files with 19 additions and 28 deletions

View File

@@ -0,0 +1,3 @@
{* Отображаемый шаблон *}
{import [test] from "bug158/test.tpl" as test}
{test.test}

View File

@@ -0,0 +1,7 @@
{* template:test.tpl *}
{macro test($break = false)}
Test macro recursive
{if $break?}
{macro.test break = true}
{/if}
{/macro}