<?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;

/* @AdminLTE/layout/default-layout-avanzu.html.twig */
class __TwigTemplate_ce4d9b138c63c6fc867be40f9d415fe3 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->blocks = [
            'html_start' => [$this, 'block_html_start'],
            'title' => [$this, 'block_title'],
            'head' => [$this, 'block_head'],
            'body_start' => [$this, 'block_body_start'],
            'after_body_start' => [$this, 'block_after_body_start'],
            'logo_path' => [$this, 'block_logo_path'],
            'logo_mini' => [$this, 'block_logo_mini'],
            'logo_large' => [$this, 'block_logo_large'],
            'navbar_toggle' => [$this, 'block_navbar_toggle'],
            'navbar_messages' => [$this, 'block_navbar_messages'],
            'navbar_notifications' => [$this, 'block_navbar_notifications'],
            'navbar_tasks' => [$this, 'block_navbar_tasks'],
            'navbar_user' => [$this, 'block_navbar_user'],
            'navbar_control_sidebar_toggle' => [$this, 'block_navbar_control_sidebar_toggle'],
            'sidebar_user' => [$this, 'block_sidebar_user'],
            'sidebar_search' => [$this, 'block_sidebar_search'],
            'sidebar_nav' => [$this, 'block_sidebar_nav'],
            'page_title' => [$this, 'block_page_title'],
            'page_subtitle' => [$this, 'block_page_subtitle'],
            'breadcrumb' => [$this, 'block_breadcrumb'],
            'page_content_before' => [$this, 'block_page_content_before'],
            'page_content_class' => [$this, 'block_page_content_class'],
            'page_content_start' => [$this, 'block_page_content_start'],
            'page_content' => [$this, 'block_page_content'],
            'page_content_end' => [$this, 'block_page_content_end'],
            'page_content_after' => [$this, 'block_page_content_after'],
            'footer' => [$this, 'block_footer'],
            'control_sidebar' => [$this, 'block_control_sidebar'],
        ];
    }

    protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
    {
        // line 10
        return "@AdminLTE/layout/default-layout.html.twig";
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        $this->parent = $this->load("@AdminLTE/layout/default-layout.html.twig", 10);
        yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
    }

    // line 12
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_html_start(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_html_start", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_html_start", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("html_start", $context, $blocks);
        }
        yield from [];
    }

    // line 13
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_title(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_document_title", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_document_title", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("title", $context, $blocks);
        }
        yield from [];
    }

    // line 14
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_head(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_head", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_head", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("head", $context, $blocks);
        }
        yield from [];
    }

    // line 15
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_body_start(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_body_start", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_body_start", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("body_start", $context, $blocks);
        }
        yield from [];
    }

    // line 16
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_after_body_start(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_after_body_start", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_after_body_start", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("after_body_start", $context, $blocks);
        }
        yield from [];
    }

    // line 17
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_logo_path(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_logo_path", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_logo_path", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("logo_path", $context, $blocks);
        }
        yield from [];
    }

    // line 18
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_logo_mini(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_logo_mini", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_logo_mini", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("logo_mini", $context, $blocks);
        }
        yield from [];
    }

    // line 19
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_logo_large(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_logo_lg", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_logo_lg", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("logo_large", $context, $blocks);
        }
        yield from [];
    }

    // line 20
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_navbar_toggle(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_navbar_toggle", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_navbar_toggle", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("navbar_toggle", $context, $blocks);
        }
        yield from [];
    }

    // line 21
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_navbar_messages(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_navbar_messages", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_navbar_messages", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("navbar_messages", $context, $blocks);
        }
        yield from [];
    }

    // line 22
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_navbar_notifications(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_navbar_notifications", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_navbar_notifications", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("navbar_notifications", $context, $blocks);
        }
        yield from [];
    }

    // line 23
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_navbar_tasks(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_navbar_tasks", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_navbar_tasks", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("navbar_tasks", $context, $blocks);
        }
        yield from [];
    }

    // line 24
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_navbar_user(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_navbar_user", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_navbar_user", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("navbar_user", $context, $blocks);
        }
        yield from [];
    }

    // line 25
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_navbar_control_sidebar_toggle(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_navbar_control_sidebar_toggle", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_navbar_control_sidebar_toggle", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("navbar_control_sidebar_toggle", $context, $blocks);
        }
        yield from [];
    }

    // line 26
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_sidebar_user(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_sidebar_user", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_sidebar_user", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("sidebar_user", $context, $blocks);
        }
        yield from [];
    }

    // line 27
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_sidebar_search(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_sidebar_search", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_sidebar_search", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("sidebar_search", $context, $blocks);
        }
        yield from [];
    }

    // line 28
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_sidebar_nav(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_sidebar_nav", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_sidebar_nav", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("sidebar_nav", $context, $blocks);
        }
        yield from [];
    }

    // line 29
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_title(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_page_title", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_page_title", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("page_title", $context, $blocks);
        }
        yield from [];
    }

    // line 30
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_subtitle(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_page_subtitle", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_page_subtitle", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("page_subtitle", $context, $blocks);
        }
        yield from [];
    }

    // line 31
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_breadcrumb(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_breadcrumb", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_breadcrumb", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("breadcrumb", $context, $blocks);
        }
        yield from [];
    }

    // line 32
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content_before(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_page_content_before", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_page_content_before", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("page_content_before", $context, $blocks);
        }
        yield from [];
    }

    // line 33
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content_class(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_page_content_class", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_page_content_class", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("page_content_class", $context, $blocks);
        }
        yield from [];
    }

    // line 34
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content_start(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_page_content_start", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_page_content_start", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("page_content_start", $context, $blocks);
        }
        yield from [];
    }

    // line 35
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_page_content", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_page_content", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("page_content", $context, $blocks);
        }
        yield from [];
    }

    // line 36
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content_end(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_page_content_end", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_page_content_end", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("page_content_end", $context, $blocks);
        }
        yield from [];
    }

    // line 37
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content_after(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_page_content_after", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_page_content_after", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("page_content_after", $context, $blocks);
        }
        yield from [];
    }

    // line 38
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_footer(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_footer", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_footer", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("footer", $context, $blocks);
        }
        yield from [];
    }

    // line 39
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_control_sidebar(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        if (        $this->unwrap()->hasBlock("avanzu_control_sidebar", $context, $blocks)) {
            yield from             $this->unwrap()->yieldBlock("avanzu_control_sidebar", $context, $blocks);
        } else {
            yield from $this->yieldParentBlock("control_sidebar", $context, $blocks);
        }
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "@AdminLTE/layout/default-layout-avanzu.html.twig";
    }

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

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  483 => 39,  468 => 38,  453 => 37,  438 => 36,  423 => 35,  408 => 34,  393 => 33,  378 => 32,  363 => 31,  348 => 30,  333 => 29,  318 => 28,  303 => 27,  288 => 26,  273 => 25,  258 => 24,  243 => 23,  228 => 22,  213 => 21,  198 => 20,  183 => 19,  168 => 18,  153 => 17,  138 => 16,  123 => 15,  108 => 14,  93 => 13,  78 => 12,  67 => 10,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "@AdminLTE/layout/default-layout-avanzu.html.twig", "/var/www/html/vendor/kevinpapst/adminlte-bundle/Resources/views/layout/default-layout-avanzu.html.twig");
    }
}
