parent = $this->loadTemplate("layout.twig", "index.twig", 1); $this->blocks = array( 'title' => array($this, 'block_title'), 'body' => array($this, 'block_body'), ); } protected function doGetParent(array $context) { return "layout.twig"; } protected function doDisplay(array $context, array $blocks = array()) { $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 2 public function block_title($context, array $blocks = array()) { echo "GitList"; } // line 4 public function block_body($context, array $blocks = array()) { // line 5 $this->loadTemplate("navigation.twig", "index.twig", 5)->display($context); // line 6 echo "
"; // line 13 $context['_parent'] = $context; $context['_seq'] = twig_ensure_traversable(($context["repositories"] ?? null)); foreach ($context['_seq'] as $context["_key"] => $context["repository"]) { // line 14 echo "
"; // line 20 if ($this->getAttribute($context["repository"], "description", array())) { // line 21 echo "

"; echo twig_escape_filter($this->env, $this->getAttribute($context["repository"], "description", array()), "html", null, true); echo "

"; } else { // line 23 echo "

There is no repository description file. Please, create one to remove this message.

"; } // line 25 echo "
"; } $_parent = $context['_parent']; unset($context['_seq'], $context['_iterated'], $context['_key'], $context['repository'], $context['_parent'], $context['loop']); $context = array_intersect_key($context, $_parent) + $_parent; // line 28 echo "

"; // line 32 $this->loadTemplate("footer.twig", "index.twig", 32)->display($context); // line 33 echo "
"; } public function getTemplateName() { return "index.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 97 => 33, 95 => 32, 89 => 28, 81 => 25, 77 => 23, 71 => 21, 69 => 20, 63 => 17, 57 => 16, 53 => 14, 49 => 13, 40 => 6, 38 => 5, 35 => 4, 29 => 2, 11 => 1,); } /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */ public function getSource() { @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED); return $this->getSourceContext()->getCode(); } public function getSourceContext() { return new Twig_Source("", "index.twig", "/var/www/SAND-FrameWork-1.1.0/application/modules/gitlist/themes/default/twig/index.twig"); } }