abstract: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"}>頁面標題<{/block}></title> </head> <body> <{block name = "nav"}> 導航 <{/block}> <{block name = "content"}> 內容 <{/block}> <{block name = "copyright"}> 版權 <{/block}> </body> </html>
繼承l(wèi)ayout的模板文件
<{extends file = "layout.html"}> <{block name = "title"}> 模板的繼承 <{/block}> <{block name = "nav"}> <{$smarty.block.parent}> <{* 調用模板里的內容 *}> <a href="">首頁</a> | <a href="">關于我們</a> | <a href="">產(chǎn)品介紹</a> | <a href="">聯(lián)系我們</a> <{/block}> <{block name = "content"}> <p>我的內容區(qū)域</p> <p>我的內容區(qū)域2</p> <p>我的內容區(qū)域3</p> <p>我的內容區(qū)域4</p> <{/block}> <{block name = "copyright"}> <h2>版權</h2> <{/block}>
Correcting teacher:查無此人Correction time:2019-09-05 14:39:48
Teacher's summary:完成的不錯。框架可以讓模版有邏輯,繼續(xù)加油