如何在Codeigniter中使用Bootstrap?

时间:2016-10-25 21:56:24

标签: twitter-bootstrap codeigniter

我是codeigniter的新手,无法找到将bootstrap库添加到本地驱动器的位置的答案,以便在最新版本的项目中使用。

1 个答案:

答案 0 :(得分:1)

下载Bootstrap 3

并在应用程序文件夹外创建assets文件夹。

application
assets
    - css
        - bootstrap.min.css
        - bootstrap-theme.min.css
    - js 
        - bootstrap.min.js
system
index.php

在配置(application/config/config.php

$config['base_url'] = 'http://localhost/path/root/folder';

在自动加载(application/config/autoload.php

$autoload['helper'] = array('url');

在视图中(头部)

<link href="<?php echo base_url(); ?>assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="<?php echo base_url(); ?>assets/css/bootstrap-theme.min.css" rel="stylesheet" />