我的问题是下一个:
我将base.html.twig
放在view
文件夹(根目录)
{# app/Resources/views/base.html.twig #}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{% block title %}Test Application{% endblock %}</title>
</head>
<body>
<div id="sidebar">
{% block sidebar %}
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
{% endblock %}
</div>
<div id="content">
{% block body %}{% endblock %}
</div>
</body>
</html>
{p}和index.html.twig
目录中的Blog
(观看/博客):
{% extends '::base.html.twig' %}
{% block title %}
{{ parent() }}
{% endblock %}
{% block sidebar %}
{{ parent() }}
{% endblock %}
{% block body %}
{% for entry in blog_entries %}
<h2>{{ entry.title }}</h2>
<p>{{ entry.body }}</p>
{% endfor %}
{% endblock %}
我的问题是下一个:
当我渲染并返回该模板时,它显示为index.html.twig
,并且它不使用基本模板中的任何部分。即使我{{ parent() }}
不起作用(没有显示任何内容)。请帮忙!
编辑:它只显示文章部分
答案 0 :(得分:4)
哈......我做得很好......只需用::base.html.twig
更改AcmeHelloBundle::base.html.twig
;)