我正在将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 /?
中