模板全局配置
配置文件template.php添加
//开启全局模板布局
'layout_on' => true,
//全局模板布局文件名
'layout_name' => 'layout'
模板布局
控制器中新建模板文件(application\index\controller\Demo\---test方法)
新建视图文件(application\index\demo\test.html)
模板入口文件(application\index\view\index\index.html)
将公共模板头部和尾部分别单独放到一个html文件中(header.html、footer.html)【application\index\view\】
创建全局模板布局文件(layout.html)【application\index\view\】首先开启布局 layout_on = true
{include file="header"/}
{__CONTENT__}//点位符,默认CONTENT,可在template.php文件中配置 'layout_item' => '{__TEXT__}'
{include file="footer"/}