摘要:layout模板文件<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title><{bl
layout模板文件
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title><{block name = "title"}>頁(yè)面標(biāo)題<{/block}></title> </head> <body> <{block name = "nav"}> 導(dǎo)航 <{/block}> <{block name = "content"}> 內(nèi)容 <{/block}> <{block name = "copyright"}> 版權(quán) <{/block}> </body> </html>
繼承l(wèi)ayout的模板文件
<{extends file = "layout.html"}> <{block name = "title"}> 模板的繼承 <{/block}> <{block name = "nav"}> <{$smarty.block.parent}> <{* 調(diào)用模板里的內(nèi)容 *}> <a href="">首頁(yè)</a> | <a href="">關(guān)于我們</a> | <a href="">產(chǎn)品介紹</a> | <a href="">聯(lián)系我們</a> <{/block}> <{block name = "content"}> <p>我的內(nèi)容區(qū)域</p> <p>我的內(nèi)容區(qū)域2</p> <p>我的內(nèi)容區(qū)域3</p> <p>我的內(nèi)容區(qū)域4</p> <{/block}> <{block name = "copyright"}> <h2>版權(quán)</h2> <{/block}>
批改老師:查無(wú)此人批改時(shí)間:2019-09-05 14:39:48
老師總結(jié):完成的不錯(cuò)。框架可以讓模版有邏輯,繼續(xù)加油