|
在Smarty里面可以采用类似下面的写法
<body> {include 'nav.tpl' assign=navbar} {include 'header.tpl' title='Smarty is cool'} {$navbar} {* body of template goes here *} {$navbar} {include 'footer.tpl'}</body>
在一个模板中 嵌套类多个模板 CI如果不借助于Smarty的话,有没有类似的方法,请大家帮忙
如果没有的话,就准备在CI中集成Smarty了
|
|