次のテンプレートがあるとします。
- ... / main.vm
- ... / sections / footer.vm
main.vmが次のようになっているとします。
Hello world, this is the main template, it's name is $name
This template also has the following footer:
#parse("sections/footer.vm")
そして、footer.vmが次のようになっているとします。
Hi there, I'm the footer! My file name is $name!
main.vmの$nameを「main.vm」にし、footer.vmの$nameを「sections/footer.vm」にします。このようなことは可能ですか?