parent = false; $this->blocks = [ 'content' => [$this, 'block_content'], ]; $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension'); $tags = ["block" => 31]; $filters = ["escape" => 30]; $functions = []; try { $this->sandbox->checkSecurity( ['block'], ['escape'], [] ); } catch (SecurityError $e) { $e->setSourceContext($this->getSourceContext()); if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) { $e->setTemplateLine($tags[$e->getTagName()]); } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) { $e->setTemplateLine($filters[$e->getFilterName()]); } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) { $e->setTemplateLine($functions[$e->getFunctionName()]); } throw $e; } } protected function doDisplay(array $context, array $blocks = []) { // line 30 echo "env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["attributes"] ?? null)), "html", null, true); echo " class=\"col-3 col-sm-2 col-xl\"> "; // line 31 $this->displayBlock('content', $context, $blocks); // line 36 echo " "; } // line 31 public function block_content($context, array $blocks = []) { // line 32 echo "
"; // line 33 echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["content"] ?? null)), "html", null, true); echo "
"; } public function getTemplateName() { return "themes/custom/popsu_colloque/template/block/block--mainnavigation.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 79 => 33, 76 => 32, 73 => 31, 63 => 36, 61 => 31, 56 => 30,); } /** @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 Source("", "themes/custom/popsu_colloque/template/block/block--mainnavigation.html.twig", "/var/www/html/web/themes/custom/popsu_colloque/template/block/block--mainnavigation.html.twig"); } }