thinkphp 中 layout.html 的内容怎么写
展开全部
<html>
<head>...</head>
<body>
<div>...</div>
<div id="main" class="main" >
{__CONTENT__}
</div>
<div>...</div>
</body>
其实就是一个完整的html网页的形式,其中{__CONTENT__}部分就替换为需要使用这个模板的页面
为了模块化,也可以将layout.html的头部和尾部分开,用include引入
<include file="Public:header" />
<div id="main" class="main" >
{__CONTENT__}
</div>
<include file="Public:bottom" />
参考thinkphp开发手册模板布局一节http://doc.thinkphp.cn/manual/layout_template.html
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询