Template-engine/views/index.html

31 lines
628 B
HTML
Raw Permalink 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">
<loop from="array" to="vo" index="key" key="i">
{$vo}
</loop>
将上面的内容放入raw标签
<original>
<loop from="array" to="vo">
{$vo}
</loop>
</original>
<assign name="a" value="张三"/>
{123456|md5}
{$a|mb_substr=0,1}
<if condition="$var eq 1">
{:time()}
<if condition="$var1 eq 2">
{:time()}
</if>
</if>
扩展的标签:
<article:list category-id="$cate.id"/>
</block>
<block name="footer">
FOOTER
</block>