这个bootstrap scss文件如何查找导入?

时间:2014-08-20 21:04:08

标签: django twitter-bootstrap sass

我正在将bootstrap集成到我的django项目中,我大致按照说明here来使SASS版本正常工作。

我试图了解发生了什么,有一件事让我感到困惑。这就是我的目录结构:

myapp
    ...
    sass
        bootstrapped
            _bootstrap_variables.scss
            bootstrap_compiled.scss
    static
        bootstrap-sass-3.2.0
            (All the stuff downloaded from bootstrap's website)
        css
            bootstrapped
                bootstrap_compiled.css
    config.rb

我的bootstrap_compiled.scss文件只是:

@import "bootstrap-compass";
@import "bootstrap-variables";
@import "bootstrap";

在测试模板中,我正在做

<link rel="stylesheet" type="text/css" href="{% static 'css/bootstrapped/bootstrap_compiled.css' %}" />

但是在bootstrap_compiled.scss中,bootstrap.scss和_bootstrap-compass.scss实际上位于bootstrap-sass-3.2.0文件夹中。在config.rb中,我有这一行:

sass_dir = "sass"

我对bootstrap_compiled.scss文件如何找到第二个和第三个文件并正确编译所有内容感到困惑。

另外,我应该将bootstrap-sass-3.2.0文件夹保存在static /?

0 个答案:

没有答案