Twig模板file1包含在file2中,模板file2在file3中扩展,我可以访问模板文件3中的模板file1块
文件1
<div>
{% include '/testfolder/insidefolder/file1.tpl' %}
</div>
file2
{% extends "file2.tpl" %}
{% block testBlock %}
overridden block
{% endblock %}
file3的
container_commands
它不会覆盖file3
中的file1模板testBlock