-2

我正在使用 boostrap 和 codeigniter 以及...如何使页脚和页眉静态并且只更改内容?

HEADER

   <div id="content">

   </div>

FOOTER

这里 是 http://i.imgur.com/bXs5IRQ.png

4

2 回答 2

2

创建header.php并放置在/application/views

<!DOCTYPE html>
<html lang="en">
    <head>
    ......
    do you header stuffs here

创建footer.php并放置在/application/views

        <div class="footer">
        ....
        footer stuff here
        </div>
    </body>
<html>

现在在您的每个视图文件中,您可以包含headerfooter文件

<?php $this->load->view('header'); ?>

<div id="content">
    ... rest of the dynamic stuffs
</div>

<?php $this->load->view('footer'); ?>
于 2013-02-26T03:14:34.090 回答
0

ci 有它自己的模板,您可以使用它或在基本控制器中编写自己的输出方法。我认为引导程序是一个 CSS 和 JS 库。所以如果你想使用风格,你可以包含引导程序,但如果你想格式化输出,你应该阅读 ci_user_guide。

于 2013-02-26T01:56:00.667 回答