source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ 'title' => [$this, 'block_title'], 'content' => [$this, 'block_content'], ]; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 echo " "; // line 5 $this->displayBlock('title', $context, $blocks); echo "
"; // line 15 $this->displayBlock('content', $context, $blocks); // line 16 echo "
"; } // line 5 public function block_title($context, array $blocks = []) { $macros = $this->macros; } // line 15 public function block_content($context, array $blocks = []) { $macros = $this->macros; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "layouts/simple.html.twig"; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 76 => 15, 70 => 5, 60 => 16, 58 => 15, 45 => 5, 39 => 1,); } public function getSourceContext() { return new Source("", "layouts/simple.html.twig", "/home/kali/php/untitled/views/layouts/simple.html.twig"); } }