1. 程式人生 > >thinkphp 公共模板和模板佈局--基礎操作

thinkphp 公共模板和模板佈局--基礎操作

學習地址:http://www.kancloud.cn/thinkphp/thinkphp_quickstart/32183

thinkphp    公共模板和模板佈局

1.首先在專案中找到Tpl或者View的檢視檔案目錄,在檔案下新建一個Pubilc檔案

2.然後再Public新建兩個檔案

head.html


footer.html


如果是使用公共模板,直接在引用頁面按照下面書寫

<include file="Public/head">
<include file="Public/footer">

如果是使用模板佈局
1.在Conf/config.php,新增以下程式碼

2.然後再Public檔案下再建一個layout,程式碼如下
最後你會發現你的每一個view頁面都是這樣的模
-------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
模板繼承 block
1.首先在View/Public目錄下新建base.html,內部內容如下

2.然後在view的頁面中如圖引用