Template-engine/demo/index.html

28 lines
519 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<extend file="base" />
<block name="title">Document</block>
<block name="body">
<volist name="array" id="vo">
{$vo}
</volist>
将上面的内容放入raw标签
<raw>
<volist name="array" id="vo">
{$vo}
</volist>
</raw>
{$a}
<if condition="$var == 1">
{:time()}
<if condition="$var1 == 2">
{:time()}
</if>
</if>
扩展的标签:
<say what="Hello" />
</block>
<block name="footer">
FOOTER
</block>