我想做这种事情,这样如果模板不存在,它只会呈现内容。下面的代码不起作用,因为你不能这样编码。
{% if app.request.attributes.get('twig_parent_template') != "" %}
{% extends app.request.attributes.get('twig_parent_template') %}
{% block title "The Title Here" %}
{% endif %}
{% block content %}
Content here
{% endblock %}
我能以某种方式做这种事情吗?