parent = array(); $this->blocks = array( 'title' => array($this, 'block_title'), 'body' => array($this, 'block_body'), ); } protected function doDisplay(array $context, array $blocks = array()) { $context = array_merge($this->env->getGlobals(), $context); // line 1 echo " "; // line 6 $this->displayBlock('title', $context, $blocks); echo " env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/css/exception_layout.css"), "html"); echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"all\" /> env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/css/exception.css"), "html"); echo "\" rel=\"stylesheet\" type=\"text/css\" media=\"all\" />
env, $this->env->getExtension('assets')->getAssetUrl("bundles/framework/images/logo_symfony.gif"), "html"); echo "\" alt=\"Symfony\" />
"; // line 39 $this->displayBlock('body', $context, $blocks); // line 40 echo "
"; } // line 6 public function block_title($context, array $blocks = array()) { echo ""; } // line 39 public function block_body($context, array $blocks = array()) { echo ""; } public function getTemplateName() { return "TwigBundle::layout.html.twig"; } public function isTraitable() { return false; } }