<?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;
/* email/base.html.twig */
class __TwigTemplate_392bd9607cd5931322d91020f797b17b extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
'content' => [$this, 'block_content'],
];
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "email/base.html.twig"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "email/base.html.twig"));
// line 1
yield "<!DOCTYPE html>
<html>
<body>
<table style=\"width:1000px;margin:auto; border-collapse:collapse\">
<tr>
<td>
";
// line 7
yield from $this->unwrap()->yieldBlock('content', $context, $blocks);
// line 9
yield " </td>
</tr>
<tr>
\t<td style=\"padding:20px\">
<img src=\"https://www.eposmanager.software/images/graphics_2025_02_04/logo.png\" alt=\"EPOSManager\" width=\"78\" height=\"67\"/>
</td>
</tr>
<tr>
<td style=\"padding: 20px\">
<p style=\"color:#333\">
Cordiali saluti,<br>lo staff di EPOSManager.
</p>
</td>
</tr>
</table>
</body>
</html>
";
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
return; yield '';
}
// line 7
public function block_content($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "content"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "content"));
// line 8
yield " ";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "email/base.html.twig";
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 93 => 8, 83 => 7, 55 => 9, 53 => 7, 45 => 1,);
}
public function getSourceContext()
{
return new Source("<!DOCTYPE html>
<html>
<body>
<table style=\"width:1000px;margin:auto; border-collapse:collapse\">
<tr>
<td>
{% block content %}
{% endblock %}
</td>
</tr>
<tr>
\t<td style=\"padding:20px\">
<img src=\"https://www.eposmanager.software/images/graphics_2025_02_04/logo.png\" alt=\"EPOSManager\" width=\"78\" height=\"67\"/>
</td>
</tr>
<tr>
<td style=\"padding: 20px\">
<p style=\"color:#333\">
Cordiali saluti,<br>lo staff di EPOSManager.
</p>
</td>
</tr>
</table>
</body>
</html>
", "email/base.html.twig", "/var/www/vhosts/eposmanager.software/templates/email/base.html.twig");
}
}