<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
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;

/* PimDashboardBundle:Widget:base.html.twig */
class __TwigTemplate_87873a34fdb386461f6a01a435758f07731078869b50a264ce79d1e890a7eb4a extends \Twig\Template
{
    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->parent = false;

        $this->blocks = [
            'widget_outer' => [$this, 'block_widget_outer'],
            'widget_inner' => [$this, 'block_widget_inner'],
        ];
    }

    protected function doDisplay(array $context, array $blocks = [])
    {
        // line 1
        $this->displayBlock('widget_outer', $context, $blocks);
    }

    public function block_widget_outer($context, array $blocks = [])
    {
        // line 2
        echo "    <div class=\"AknWidget\">
        ";
        // line 3
        $this->displayBlock('widget_inner', $context, $blocks);
        // line 16
        echo "    </div>
";
    }

    // line 3
    public function block_widget_inner($context, array $blocks = [])
    {
        // line 4
        echo "            ";
        if ((isset($context["widgetTitle"]) || array_key_exists("widgetTitle", $context))) {
            // line 5
            echo "                <div class=\"AknWidget-header widget-header\">
                    ";
            // line 6
            echo twig_escape_filter($this->env, ($context["widgetTitle"] ?? null), "html", null, true);
            echo "
                    <div class=\"AknButtonList AknButtonList--right widget-actions\"></div>
                </div>
            ";
        }
        // line 10
        echo "            ";
        if ((isset($context["widgetContent"]) || array_key_exists("widgetContent", $context))) {
            // line 11
            echo "                <div class=\"AknWidget-content widget-content\">
                    ";
            // line 12
            echo twig_escape_filter($this->env, ($context["widgetContent"] ?? null), "html", null, true);
            echo "
                </div>
            ";
        }
        // line 15
        echo "        ";
    }

    public function getTemplateName()
    {
        return "PimDashboardBundle:Widget:base.html.twig";
    }

    public function getDebugInfo()
    {
        return array (  76 => 15,  70 => 12,  67 => 11,  64 => 10,  57 => 6,  54 => 5,  51 => 4,  48 => 3,  43 => 16,  41 => 3,  38 => 2,  32 => 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("", "PimDashboardBundle:Widget:base.html.twig", "/var/www/html/vendor/akeneo/pim-community-dev/src/Akeneo/Platform/Bundle/DashboardBundle/Resources/views/Widget/base.html.twig");
    }
}
