企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 引入模板文件 ## layout ## 第一步全局配置文件里写入: ``` 'template'=>[ //搜索template这个数组 'layout_on'=>true, 'layout_name'=>'layout' ] ``` ![](https://img.kancloud.cn/b1/f8/b1f8c304fdb00000e295ad0b8ea73e9e_904x413.png) ![](https://img.kancloud.cn/7a/d9/7ad9870ed82ef473478d4765f6cdbe85_911x447.png) ## 第二步在view下创建一个layout.html公共文件 {__CONTENT__} 然后就可以输出index.html的文件了 # 引入其他模板: ![](https://img.kancloud.cn/bb/d1/bbd19f3e6cb2bafd3a91f91f236ff0a5_1147x470.png) ![](https://img.kancloud.cn/ee/fe/eefe556e21cea23c7c192ca43b930b73_1321x515.png) ``` {include file="header" /} //其中header 是其他模板文件 {__CONTENT__} {include file="footer" /} //其中footer是其他模板文件 ``` ## layout.html里代码案例: ~~~ {include file="header"} {__CONTENT__} {include file="footer"} ~~~ # 自定义配置 ``` {include file="header" / title=" "} //title是模板的标题 {__CONTENT__} {include file="footer" / title=" "} //title是模板的标题 ``` #模板引入 以下为实际应用场景 ![](https://img.kancloud.cn/18/87/1887bc60cdb08415d0925dbe67900055_1596x635.png) ![](https://img.kancloud.cn/74/72/7472d597f6b68466628b188fc3f5a965_1881x674.png) ![](https://img.kancloud.cn/b9/36/b936f355b6875e067804a29e8ff10434_1890x771.png) ![](https://img.kancloud.cn/0f/00/0f00078bf9d1f094268753849a964896_1643x800.png) ![](https://img.kancloud.cn/ed/11/ed11d52ebc848d8593d4af42a642b8eb_1717x778.png) ![](https://img.kancloud.cn/33/a2/33a236cdc40dc0442991d3e453c6bb8c_1894x841.png)