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

/* PimUserBundle:Mail:layout.html.twig */
class __TwigTemplate_e27dae314022098f69a3cc01d3751808fc54995d30cfd26ec13f4de5fe9c43da extends \Twig\Template
{
    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->parent = false;

        $this->blocks = [
            'content' => [$this, 'block_content'],
        ];
    }

    protected function doDisplay(array $context, array $blocks = [])
    {
        // line 1
        echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">
<html>
<head>
    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
</head>
<body leftmargin=\"0\" rightmargin=\"0\" topmargin=\"0\" bottommargin=\"0\" bgcolor=\"#ffffff\">
    ";
        // line 7
        $this->displayBlock('content', $context, $blocks);
        // line 8
        echo "
    <br>
    <hr>
    <p>
        Regards,<br>
        the Akeneo Team
    </p>
</body>
</html>
";
    }

    // line 7
    public function block_content($context, array $blocks = [])
    {
    }

    public function getTemplateName()
    {
        return "PimUserBundle:Mail:layout.html.twig";
    }

    public function getDebugInfo()
    {
        return array (  54 => 7,  41 => 8,  39 => 7,  31 => 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("", "PimUserBundle:Mail:layout.html.twig", "/var/www/html/vendor/akeneo/pim-community-dev/src/Akeneo/UserManagement/Bundle/Resources/views/Mail/layout.html.twig");
    }
}
