0

我正在尝试将 ZF2 与 ZfcTwig 模块一起使用。我有骨架应用程序的基本结构:view->layout->layout.phtml (or layout.twig) view->application->index->​​index.phtml (or index.twig)

如果我使用下一对:layout.twig 和 index.phtml - ZfcTwig 模块正确渲染了 layout.twig,则 index.phtml(默认渲染)的结果也是正确的。

但是,如果我尝试将内容模板用作树枝模板(两个树枝文件) - 我只得到具有正确渲染的 index.twig,但没有来自布局模板(layout.twig 甚至 layout.phtml)

有没有人有同样的情况?

4

1 回答 1

3

您可以使用树枝布局,它与 ZfcTwig 配合得很好

在 index.twig 中

{% extends 'layout/layout.twig' %}

{% block content %}
    Here your template
{% endblock content %}

在 layout.twig 中

{% block content %}{{ content|raw }}{% endblock content %}
于 2013-04-06T16:39:08.413 回答