FuelPHP和胡子部分

时间:2013-11-26 21:24:41

标签: php mustache partials fuelphp

我正在使用FuelPHP构建CMS并希望使用Mustache。我有一个我从wrapbootstrap购买的主题,其中包括胡须文件作为参考。

Mustache安装正常,我可以获得regullar小胡子标签,即{{title}}

然而,我似乎无法弄清楚如何让局部功能发挥作用。我已经尝试在发布此处之前更改我在谷歌上可以找到的部分和其他资源的路径。

    <html lang="en">
    {{> layout._template.header}}

    <body>
    {{> layout.topbar}}

        <div class="main-container" id="main-container">
         <script type="text/javascript">
         try{ace.settings.check('main-container' , 'fixed')}catch(e){}
         </script>
         <div class="main-container-inner">

         {{> layout.sidenav}}

            <div class="main-content">
                {{> layout.breadcrumbs}}

                <div class="page-content">
                    {{^page.no-header}}{{!if no such thing as "no-header", then print header}}
                    <div class="page-header">
                        <h1>{{page.title}} {{#page.description}}<small><i class="icon-double-angle-right"></i> {{page.description}}</small>{{/page.description}}</h1>
                    </div><!--/.page-header-->
                    {{/page.no-header}}

                    <div class="row">
                     <div class="col-xs-12">
<!-- PAGE CONTENT BEGINS -->
{{> page.content }}
<!-- PAGE CONTENT ENDS -->
                     </div><!--/.col-->
                    </div><!--/.row-->

                </div><!--/.page-content-->

            </div><!--/.main-content -->

            {{> layout.settings}}
         </div><!--/.main-container-inner-->

         <a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse">
            <i class="icon-double-angle-up icon-only bigger-110"></i>
         </a>
        </div><!--/.main-container-->

        {{> layout._template.footer}}


    </body>
</html>

我几乎已经删除了。来自{{&gt; layout._template.header}}并替换为我在这里找到的/但也没有用。 https://github.com/bobthecow/mustache.php/wiki/Template-Loading

对不起,如果在我真的被难倒之前已经回答了这个问题。

由于

0 个答案:

没有答案