parent = false; $this->blocks = array( ); } protected function doDisplay(array $context, array $blocks = array()) { // line 1 $location = "overall_header.html"; $namespace = false; if (strpos($location, '@') === 0) { $namespace = substr($location, 1, strpos($location, '/') - 1); $previous_look_up_order = $this->env->getNamespaceLookUpOrder(); $this->env->setNamespaceLookUpOrder(array($namespace, '__main__')); } $this->loadTemplate("overall_header.html", "login_body.html", 1)->display($context); if ($namespace) { $this->env->setNamespaceLookUpOrder($previous_look_up_order); } // line 2 echo "
"; // line 68 $location = "overall_footer.html"; $namespace = false; if (strpos($location, '@') === 0) { $namespace = substr($location, 1, strpos($location, '/') - 1); $previous_look_up_order = $this->env->getNamespaceLookUpOrder(); $this->env->setNamespaceLookUpOrder(array($namespace, '__main__')); } $this->loadTemplate("overall_footer.html", "login_body.html", 68)->display($context); if ($namespace) { $this->env->setNamespaceLookUpOrder($previous_look_up_order); } } public function getTemplateName() { return "login_body.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 257 => 68, 252 => 65, 241 => 59, 230 => 57, 226 => 56, 222 => 55, 216 => 51, 214 => 50, 208 => 46, 205 => 45, 192 => 44, 190 => 43, 180 => 38, 174 => 35, 171 => 34, 164 => 31, 158 => 30, 155 => 29, 152 => 28, 149 => 27, 136 => 26, 132 => 25, 130 => 24, 127 => 23, 124 => 22, 115 => 21, 106 => 20, 104 => 19, 98 => 18, 91 => 17, 81 => 14, 74 => 13, 71 => 12, 65 => 11, 57 => 10, 48 => 8, 34 => 3, 31 => 2, 19 => 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("", "login_body.html", ""); } }