blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "partials/base.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $this->parent = $this->loadTemplate("partials/base.html.twig", "error.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { // line 4 echo "\t
\t\t
\t\t\t

"; // line 6 echo $this->env->getExtension('Grav\Common\Twig\TwigExtension')->translate($this->env, "PLUGIN_ERROR.ERROR"); echo " "; echo $this->getAttribute($this->getAttribute(($context["page"] ?? null), "header", []), "http_response_code", []); echo "

\t\t\t

\t\t\t\t"; // line 8 echo $this->getAttribute(($context["page"] ?? null), "content", []); echo " \t\t\t

\t\t
\t
"; } public function getTemplateName() { return "error.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 53 => 8, 46 => 6, 42 => 4, 39 => 3, 29 => 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 Source("{% extends 'partials/base.html.twig' %} {% block content %} \t
\t\t
\t\t\t

{{ 'PLUGIN_ERROR.ERROR'|t }} {{ page.header.http_response_code }}

\t\t\t

\t\t\t\t{{ page.content|raw }} \t\t\t

\t\t
\t
{% endblock %} ", "error.html.twig", "/mnt/wpool1_tempdisk/webwndt/steintiger/user/themes/quark/templates/error.html.twig"); } }