source = $this->getSourceContext(); $this->blocks = [ 'title' => [$this, 'block_title'], 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "layouts/simple.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("layouts/simple.html.twig", "main/index.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_title($context, array $blocks = []) { $macros = $this->macros; echo twig_escape_filter($this->env, ($context["title"] ?? null), "html", null, true); } // line 5 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 6 echo " "; echo twig_escape_filter($this->env, $this->env->getFunction('create_form')->getCallable()(), "html", null, true); echo " "; // line 7 echo twig_escape_filter($this->env, ($context["content"] ?? null), "html", null, true); echo " "; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "main/index.html.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 63 => 7, 58 => 6, 54 => 5, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "main/index.html.twig", "/home/kali/php/untitled/views/main/index.html.twig"); } }