source = $this->getSourceContext(); $this->blocks = [ 'title' => [$this, 'block_title'], ]; } protected function doGetParent(array $context) { // line 1 return "base.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("base.html.twig", "/home/home.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 "Accueil - HearthTrack"; } public function getTemplateName() { return "/home/home.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "/home/home.html.twig", "/home/www/anpinagot/public_html/sae/Web/Sources/src/app/views/Templates/home/home.html.twig"); } }