我正在做jobeet教程。当我像这样在 localhost 上运行项目时:
http://localhost/Symfony/web/app_dev.php/ens_job/
我收到一个错误
A template that extends another one cannot have a body in EnslJobeetBundle:Job:index.html.twig at line 7.
在这种情况下我该怎么办?
我正在使用 index.html.twig 如下:
<!-- src/Ens/JobeetBundle/Resources/views/Job/index.html.twig -->
{% extends 'EnsJobeetBundle::layout.html.twig' %}
{% block stylesheets %}
{{ parent() }}
<link rel="stylesheet" href="{{ asset('bundles/ensjobeet/css/jobs.css') }}" type="text/css" media="all" />
{% endblock %}
<!-- the rest of the code -->