<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
use Twig\TemplateWrapper;

/* components/footer.twig */
class __TwigTemplate_15547a3f1e5eee93706f0094c4453312 extends Template
{
    private Source $source;
    /**
     * @var array<string, Template>
     */
    private array $macros = [];

    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->source = $this->getSourceContext();

        $this->parent = false;

        $this->blocks = [
        ];
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 1
        yield "<footer class=\"container border-t-2 border-slate-800 text-center mx-auto px-4 py-8 xl:max-w-screen-xl dark:text-white dark:border-white\">
    <div class=\"flex flex-col justify-center items-center\">
        <p class=\"mb-4\">
            Powered by <a href=\"https://robodoc.net/\" class=\"underline hover:text-sky-700 dark:hover:text-violet-700\">robodoc.net</a>.
        </p>
    </div>
</footer>
";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "components/footer.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  42 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "components/footer.twig", "/usr/local/www/htdocs/static/mirrors.robodoc.net/test/app/views/components/footer.twig");
    }
}
