parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
if (($context["custom_admin_footer"] ?? null)) {
// line 2
echo " ";
echo ($context["custom_admin_footer"] ?? null);
echo "
";
} else {
// line 4
echo " Grav v";
echo twig_escape_filter($this->env, twig_constant("GRAV_VERSION"), "html", null, true);
echo " - Admin v";
echo twig_escape_filter($this->env, ($context["admin_version"] ?? null), "html", null, true);
echo " - ";
echo twig_escape_filter($this->env, twig_lower_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\Twig\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.WAS_MADE_WITH")), "html", null, true);
echo " ";
echo twig_escape_filter($this->env, twig_lower_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\Twig\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.BY")), "html", null, true);
echo " Trilby Media.
";
}
}
public function getTemplateName()
{
return "partials/footer.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 38 => 4, 32 => 2, 30 => 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("{% if custom_admin_footer %}
{{ custom_admin_footer|raw }}
{% else %}
Grav v{{ constant('GRAV_VERSION') }} - Admin v{{ admin_version }} - {{ \"PLUGIN_ADMIN.WAS_MADE_WITH\"|tu|lower }} {{ \"PLUGIN_ADMIN.BY\"|tu|lower }} Trilby Media.
{% endif %}
", "partials/footer.html.twig", "/mnt/wpool1_tempdisk/webwndt/steintiger/user/plugins/admin/themes/grav/templates/partials/footer.html.twig");
}
}