Thinkphp模板布局

Thinkphp模板布局

  • 建立layout1.html作为基础base模板
    在vie中建立layout文件夹用于管理模板Thinkphp模板布局

  • 建立layout1.html作为基础base模板
    Thinkphp模板布局

  • 在application/admin/view/index/index.html中添加如下代码

  • 1继承的模板

  • {extend name="layout/layout1" /}

  • 2引入的html代码部分

  • {block name="main"} <h1>test<h1/> {/block}