有没有人可以解释我在Symfony中如何使用样式表?
根据documentation,我应该使用以下代码:
{% block stylesheets %}
{% stylesheets 'bundles/app/css/*' filter='cssrewrite' %}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
{% endblock %}
这就是我的base.html.twig <head>
标记的样子:
3 <head>
4 <meta charset="UTF-8" />
5 <title>{% block title %}Welcome!{% endblock %}</title>
6 {% block stylesheets %}
7 {% stylesheets 'bundles/app/css' filter='cssrewrite' %}
8 <link rel="stylesheet" type="text/css" href="" />
9 {% endstylesheets %}
10 {% endblock %}
11 <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
12 </head>
但是当我去任何页面时,我看到以下错误:
Unexpected "stylesheets" tag (expecting closing tag for the "block" tag defined near line 7) in base.html.twig at line 7.
提前致谢。
答案 0 :(得分:1)
首先,您需要手动安装和配置资产 - 因为它不再默认添加到Symfony(https://github.com/symfony/symfony-standard/pull/860)。
你有食谱所喜欢的所有信息。