source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "layouts/app.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("layouts/app.twig", "index.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 echo " "; $this->loadTemplate("components/header.twig", "index.twig", 4)->display($context); // line 5 echo "
"; // line 10 echo twig_escape_filter($this->env, call_user_func_array($this->env->getFunction('translate')->getCallable(), ["file.name"]), "html", null, true); echo "
"; // line 37 if (($context["readme"] ?? null)) { // line 38 echo " "; $this->loadTemplate("components/readme.twig", "index.twig", 38)->display($context); // line 39 echo " "; } // line 40 echo "
"; // line 42 $this->loadTemplate("components/footer.twig", "index.twig", 42)->display($context); // line 43 echo " "; // line 44 $this->loadTemplate("components/scroll-to-top.twig", "index.twig", 44)->display($context); // line 45 echo " "; } public function getTemplateName() { return "index.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 155 => 45, 153 => 44, 150 => 43, 148 => 42, 144 => 40, 141 => 39, 138 => 38, 136 => 37, 130 => 33, 113 => 31, 96 => 30, 91 => 27, 85 => 25, 83 => 24, 74 => 18, 67 => 14, 60 => 10, 53 => 5, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "index.twig", "/var/www/www.diogo.site/public/projects/GNU-social/soc/2020/daily_report/archive/May/app/views/index.twig"); } }