Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wizhippo/6f5504045318118fcfa7 to your computer and use it in GitHub Desktop.
Save wizhippo/6f5504045318118fcfa7 to your computer and use it in GitHub Desktop.
<?php
/* MyBundle::pagelayout.html.twig */
class __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9 extends eZ\Bundle\EzPublishDebugBundle\Twig\DebugTemplate
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = $this->env->loadTemplate("MyBundle::pagelayout.html.twig");
$this->blocks = array(
'header' => array($this, 'block_header'),
);
}
protected function doGetParent(array $context)
{
return "MyBundle::pagelayout.html.twig";
}
protected function doDisplay(array $context, array $blocks = array())
{
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 3
public function block_header($context, array $blocks = array())
{
// line 4
echo " LKAHDKJHDKSDH
";
// line 5
$this->displayParentBlock("header", $context, $blocks);
echo "
";
}
public function getTemplateName()
{
return "MyBundle::pagelayout.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 34 => 5, 31 => 4, 28 => 3, 37 => 14, 35 => 13, 29 => 8, 26 => 7,);
}
}
<?php
/* MyBundle:full:landing_page.html.twig */
class __TwigTemplate_231db51e0a5626157c99a0d450174e204a9aac5222f4b9a37321eda846494786 extends eZ\Bundle\EzPublishDebugBundle\Twig\DebugTemplate
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->blocks = array(
'content' => array($this, 'block_content'),
);
}
protected function doGetParent(array $context)
{
return $this->env->resolveTemplate((((isset($context["noLayout"]) ? $context["noLayout"] : $this->getContext($context, "noLayout"))) ? ((isset($context["viewbaseLayout"]) ? $context["viewbaseLayout"] : $this->getContext($context, "viewbaseLayout"))) : ("MyBundle::pagelayout.html.twig")));
}
protected function doDisplay(array $context, array $blocks = array())
{
$this->getParent($context)->display($context, array_merge($this->blocks, $blocks));
}
// line 7
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"content-view-full\">
<div class=\"class-landing-page\">
<div class=\"attribute-page\">
";
// line 13
echo " ";
// line 14
echo " ";
echo $this->env->getExtension('ezpublish.content')->renderField((isset($context["content"]) ? $context["content"] : $this->getContext($context, "content")), "page");
echo "
</div>
</div>
</div>
";
}
public function getTemplateName()
{
return "MyBundle:full:landing_page.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 37 => 14, 35 => 13, 29 => 8, 26 => 7,);
}
}
{% extends "MyBundle::pagelayout.html.twig" %}
{% block header %}
LKAHDKJHDKSDH
{{ parent() }}
{% endblock %}
{#
Landing page - full view
#}
{% extends noLayout ? viewbaseLayout : "TocomConsumerSiteBundle::pagelayout.html.twig" %}
{% block content %}
<div class="content-view-full">
<div class="class-landing-page">
<div class="attribute-page">
{# Rendering the whole "page" field, which is of ezpage fieldtype. #}
{# All zones and blocks will be rendered from here. #}
{{ ez_render_field( content, "page" ) }}
</div>
</div>
</div>
{% endblock %}
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="{{ app.request.locale }}" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="{{ app.request.locale }}" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="{{ app.request.locale }}" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="{{ app.request.locale }}" class="no-js"> <!--<![endif]-->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
{% block page_head %}
{% include 'MyBundle::page_head.html.twig' %}
{% endblock %}
{% include 'MyBundle::page_head_style.html.twig' %}
{% include 'MyBundle::page_head_script.html.twig' %}
</head>
<body>
{% if location is defined and not location.isDraft %}
{% set currentLocation=location %}
{% endif %}
<!-- Complete page area: START -->
{% if currentLocation is defined %}
{{ render( controller( "ezpublish_legacy.website_toolbar.controller:websiteToolbarAction", { 'locationId': currentLocation.id} ) ) }}
{% endif %}
<div id="page" class="{{ location is defined ? 'page-location-' ~ location.id : '' }}">
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<a class="sr-only" href="#content">{{'Skip to main content'|trans}}</a>
<!-- Header area: START -->
{% block header %}
{% include 'MyBundle::page_header.html.twig' %}
{% endblock %}
<!-- Header area: END -->
<div class="container">
{% block breadcrumb %}
{% if currentLocation is defined %}
{{ render( controller( 'MyBundle:ConsumerSite:viewBreadcrumb', { 'locationId': currentLocation.id } ) ) }}
{% endif %}
{% endblock %}
<div class="row">
<!-- Main area: START -->
<div id="content" class="col-md-{{ innerColumnSize|default( 12 ) }}">
{% block content %}{% endblock %}
</div>
<!-- Main area: END -->
</div>
</div>
<!-- Footer area: START -->
{% block footer %}
{{ render( controller( "MyBundle:Footer:index" ) ) }}
{% endblock %}
<!-- Footer area: END -->
<noscript>
<div class="alert-noscript">
To use this site, please enable JavaScript in your browser settings and then refresh this page.
</div>
</noscript>
</div>
<!-- Complete page area: END -->
<!-- Footer script area: START -->
{% block footerScript %}
{% include 'MyBundle::page_footer_script.html.twig' %}
{% endblock %}
<!-- Footer script area: END -->
</body>
</html>
[1] Symfony\Component\Debug\Exception\FatalErrorException: Error: Maximum function nesting level of '200' reached, aborting! in /var/www/example.com/vendor/twig/twig/lib/Twig/Loader/Filesystem.php line 144
at n/a
in /var/www/example.com/vendor/twig/twig/lib/Twig/Loader/Filesystem.php line 144
at Symfony\Bundle\TwigBundle\Loader\FilesystemLoader->exists()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Loader/Chain.php line 104
at Twig_Loader_Chain->getCacheKey()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 265
at Twig_Environment->getTemplateClass()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 323
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/13/af/8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9.php line 10
at __TwigTemplate_13af8272311c40865a08e9264621eb8c3e3b341b2b46d19c883f312f75d9feb9->__construct()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 345
at Twig_Environment->loadTemplate()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Legacy/Templating/Twig/Environment.php line 46
at eZ\Publish\Core\MVC\Legacy\Templating\Twig\Environment->loadTemplate()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Environment.php line 397
at Twig_Environment->resolveTemplate()
in /var/www/example.com/ezpublish/cache/dev/twig/23/1d/b51e0a5626157c99a0d450174e204a9aac5222f4b9a37321eda846494786.php line 17
at __TwigTemplate_231db51e0a5626157c99a0d450174e204a9aac5222f4b9a37321eda846494786->doGetParent()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Template.php line 69
at Twig_Template->getParent()
in /var/www/example.com/ezpublish/cache/dev/twig/23/1d/b51e0a5626157c99a0d450174e204a9aac5222f4b9a37321eda846494786.php line 22
at __TwigTemplate_231db51e0a5626157c99a0d450174e204a9aac5222f4b9a37321eda846494786->doDisplay()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Template.php line 279
at Twig_Template->displayWithErrorHandling()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Template.php line 253
at Twig_Template->display()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Bundle/EzPublishDebugBundle/Twig/DebugTemplate.php line 30
at eZ\Bundle\EzPublishDebugBundle\Twig\DebugTemplate->display()
in /var/www/example.com/vendor/twig/twig/lib/Twig/Template.php line 264
at Twig_Template->render()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php line 50
at Symfony\Bridge\Twig\TwigEngine->render()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/TwigEngine.php line 74
at Symfony\Bundle\TwigBundle\TwigEngine->render()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/Debug/TimedTwigEngine.php line 50
at Symfony\Bundle\TwigBundle\Debug\TimedTwigEngine->render()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Component/Templating/DelegatingEngine.php line 49
at Symfony\Component\Templating\DelegatingEngine->render()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Symfony/View/Manager.php line 335
at eZ\Publish\Core\MVC\Symfony\View\Manager->renderContentView()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Symfony/View/Manager.php line 278
at eZ\Publish\Core\MVC\Symfony\View\Manager->renderLocation()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Symfony/Controller/Content/ViewController.php line 407
at eZ\Publish\Core\MVC\Symfony\Controller\Content\ViewController->renderLocation()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Publish/Core/MVC/Symfony/Controller/Content/ViewController.php line 130
at eZ\Publish\Core\MVC\Symfony\Controller\Content\ViewController->viewLocation()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php line 145
at call_user_func_array()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php line 145
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php line 66
at Symfony\Component\HttpKernel\HttpKernel->handle()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/DependencyInjection/ContainerAwareHttpKernel.php line 64
at Symfony\Component\HttpKernel\DependencyInjection\ContainerAwareHttpKernel->handle()
in /var/www/example.com/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php line 185
at Symfony\Component\HttpKernel\Kernel->handle()
in /var/www/example.com/vendor/ezsystems/ezpublish-kernel/eZ/Bundle/EzPublishCoreBundle/Kernel.php line 67
at eZ\Bundle\EzPublishCoreBundle\Kernel->handle()
in /var/www/example.com/web/index.php line 77
at {main}()
in /var/www/example.com/web/index.php line 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment