blocks = [ 'messages' => [$this, 'block_messages'], 'body' => [$this, 'block_body'], 'instructions' => [$this, 'block_instructions'], 'integration' => [$this, 'block_integration'], 'form' => [$this, 'block_form'], ]; } protected function doGetParent(array $context) { // line 1 return "partials/base.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { // line 2 $context["scope"] = ((($context["scope"] ?? null)) ? (($context["scope"] ?? null)) : ("data.")); // line 1 $this->parent = $this->loadTemplate("partials/base.html.twig", "partials/login.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_messages($context, array $blocks = []) { } // line 5 public function block_body($context, array $blocks = []) { // line 6 echo "
env, ($context["classes"] ?? null), "html", null, true); echo "\"> "; // line 9 $this->loadTemplate("partials/login-logo.html.twig", "partials/login.html.twig", 9)->display($context); // line 10 echo " "; // line 11 $this->loadTemplate("partials/messages.html.twig", "partials/login.html.twig", 11)->display($context); // line 12 echo " "; // line 13 $this->displayBlock('instructions', $context, $blocks); // line 14 echo " "; // line 15 $this->displayBlock('integration', $context, $blocks); // line 16 echo " "; // line 17 $context["redirect"] = ((($context["redirect"] ?? null)) ? (($context["redirect"] ?? null)) : ((($this->getAttribute(($context["uri"] ?? null), "path", []) . $this->getAttribute(($context["uri"] ?? null), "params", [])) . (($this->getAttribute(($context["uri"] ?? null), "query", [])) ? (("?" . $this->getAttribute(($context["uri"] ?? null), "query", []))) : (""))))); // line 18 echo "
env, ($context["base_url_relative"] ?? null), "html", null, true); echo "\">
"; // line 21 $this->displayBlock('form', $context, $blocks); // line 22 echo " env, ($context["redirect"] ?? null), "html", null, true); echo "\" /> "; // line 23 echo $this->env->getExtension('Grav\Common\Twig\TwigExtension')->nonceFieldFunc("admin-form", "admin-nonce"); echo "
"; } // line 13 public function block_instructions($context, array $blocks = []) { } // line 15 public function block_integration($context, array $blocks = []) { } // line 21 public function block_form($context, array $blocks = []) { } public function getTemplateName() { return "partials/login.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 125 => 21, 120 => 15, 115 => 13, 99 => 23, 94 => 22, 92 => 21, 87 => 19, 84 => 18, 82 => 17, 79 => 16, 77 => 15, 74 => 14, 72 => 13, 69 => 12, 67 => 11, 64 => 10, 62 => 9, 57 => 7, 54 => 6, 51 => 5, 46 => 3, 41 => 1, 39 => 2, 33 => 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' %} {% set scope = scope ?: 'data.' %} {% block messages %}{% endblock %} {% block body %}
{% include 'partials/login-logo.html.twig' %} {% include 'partials/messages.html.twig' %} {% block instructions %}{% endblock %} {% block integration %}{% endblock %} {% set redirect = redirect ?: uri.path ~ uri.params ~ (uri.query ? '?' ~ uri.query : '') %}
{% block form %}{% endblock %} {{ nonce_field('admin-form', 'admin-nonce')|raw }}
{% endblock %} ", "partials/login.html.twig", "/mnt/wpool1_tempdisk/webwndt/steintiger/user/plugins/admin/themes/grav/templates/partials/login.html.twig"); } }