如果我只是在我的base.html.twig中引用bootstrap.css文件,那么页面的样式似乎部分起作用,因为它看起来有些样式,但是很多样式都缺失了,比如菜单和jumbotron例如没有造型。
我想知道的是,因为bootstrap只能使用symfony 2,如果使用资产而且更少?
这就是我引用它们的方式
<link href="{{ asset('css/bootstrap.css') }}" rel="stylesheet">
<link href="{{ asset ('css/bootstrap-responsive.css')}}" rel="stylesheet">
答案 0 :(得分:0)
这就是我开始工作的方式
{% stylesheets
'bundles/your/css/thirdparty/bootstrap.css'
filter="cssrewrite" %}
<link href="{{ asset_url }}" rel="stylesheet" type="text/css" />
{% endstylesheets %}
{% javascripts
'@YourBundle/Resources/public/js/thirdparty/jquery.js'
'@YourBundle/Resources/public/js/thirdparty/bootstrap.js'
'@YourBundle/Resources/public/js/*' %}
<script src="{{ asset_url }}"></script>
{% endjavascripts %}