有条件的树枝扩展模板
我将Symfony 2与Twig一起使用,我的问题非常简单:
在视图中,我想根据变量扩展其中一个布局。如果变量是“我想扩展”,如果是“我想扩展”。false
UdoWebsiteBundle::layout.html.twig
true
UdoWebsiteBundle::layout_true.html.twig
这是我尝试的代码:
{% block layout_extender %}
{% if intro == 'false' %}
{% extends 'UdoWebsiteBundle::layout.html.twig' %}
{% else %}
{% extends 'UdoWebsiteBundle::layout_true.html.twig' %}
{% endif %}
{% endblock %}
我收到此错误:
禁止在第7行的“UdoWebsiteBundle:home:home.html.twig”中使用多个扩展标签
有没有其他方法可以实现这一目标?