<?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/header.twig */
class __TwigTemplate_665e09fc83c7d5259b8bb5a36dce73b2 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 "<header class=\"bg-sky-600 shadow-sm sticky top-0 dark:bg-violet-700\">
    <div class=\"border-b border-sky-700 dark:border-violet-800\">
        <div class=\"container flex flex-wrap justify-between items-center space-x-6 mx-auto p-4 md:flex-row xl:max-w-screen-xl\">
            <a href=\".\" class=\"flex items-center space-x-2 p-1\" title=\"";
        // line 4
        yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->env->getFunction('config')->getCallable()("site_title"), "html", null, true);
        yield "\">
                <svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"folder-tree\" class=\"inline-block fill-current text-white w-8 h-8\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\">
                    <path fill=\"currentColor\" d=\"M544 32H432L400 0h-80a32 32 0 0 0-32 32v160a32 32 0 0 0 32 32h224a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm0 288H432l-32-32h-80a32 32 0 0 0-32 32v160a32 32 0 0 0 32 32h224a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32zM64 16A16 16 0 0 0 48 0H16A16 16 0 0 0 0 16v400a32 32 0 0 0 32 32h224v-64H64V160h192V96H64z\"></path>
                </svg>
            </a>

            <div class=\"flex-1 max-w-xl\">
                ";
        // line 11
        yield from $this->load("components/search.twig", 11)->unwrap()->yield($context);
        // line 12
        yield "            </div>

            <div class=\"flex items-center justify-center w-6\">
                ";
        // line 15
        yield from $this->load("components/theme-toggle.twig", 15)->unwrap()->yield($context);
        // line 16
        yield "            </div>
        </div>
    </div>

    <div class=\"border-t border-sky-500 dark:border-violet-600\">
        <div class=\"container flex flex-wrap justify-between items-center space-x-6 mx-auto px-4 py-1 md:flex-row xl:max-w-screen-xl\">
            ";
        // line 22
        yield from $this->load("components/breadcrumbs.twig", 22)->unwrap()->yield($context);
        // line 23
        yield "
            ";
        // line 24
        if (((($context["path"] ?? null) &&  !Twig\Extension\CoreExtension::testEmpty(($context["files"] ?? null))) && $this->env->getFunction('config')->getCallable()("zip_downloads"))) {
            // line 25
            yield "                <a href=\"";
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->env->getFunction('zip_url')->getCallable()(($context["path"] ?? null)), "html", null, true);
            yield "\" title=\"";
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->env->getFunction('translate')->getCallable()("download"), "html", null, true);
            yield "\" rel=\"nofollow\"
                    class=\"flex justify-center items-center text-sm text-white w-6 hover:text-slate-300\"
                >
                    <i class=\"fas fa-download fa-lg\"></i>
                </a>
            ";
        }
        // line 31
        yield "        </div>
    </div>
</header>
";
        yield from [];
    }

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

    /**
     * @codeCoverageIgnore
     */
    public function isTraitable(): bool
    {
        return false;
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  93 => 31,  81 => 25,  79 => 24,  76 => 23,  74 => 22,  66 => 16,  64 => 15,  59 => 12,  57 => 11,  47 => 4,  42 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "components/header.twig", "/var/www/vhosts/awxpokmt.host213.checkdomain.de/htdocs/playground/DirectoryLister/DirectoryLister-5.2.1/app/views/components/header.twig");
    }
}
