/
home
/
obinna
/
html
/
mixchief_app
/
var
/
cache
/
prod
/
twig
/
d0
/
Upload File
HOME
<?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; 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; /* emails/contact.html.twig */ class __TwigTemplate_7d8f99efeb09ccad1f8faeff521dd20f93fb66f8acb592994a76b5c2b14946c3 extends Template { private $source; private $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 = []) { $macros = $this->macros; // line 1 echo "<table> <tr> <td>Name</td> <td>"; // line 4 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, ($context["contact"] ?? null), "name", [], "any", false, false, false, 4), "html", null, true); echo "</td> </tr> <tr> <td>Email</td> <td>"; // line 8 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, ($context["contact"] ?? null), "email", [], "any", false, false, false, 8), "html", null, true); echo "</td> </tr> <tr> <td>Event</td> <td>"; // line 12 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, ($context["contact"] ?? null), "eventType", [], "any", false, false, false, 12), "html", null, true); echo "</td> </tr> <tr> <td>Phone</td> <td>"; // line 16 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, ($context["contact"] ?? null), "phone", [], "any", false, false, false, 16), "html", null, true); echo "</td> </tr> <tr> <td>Message</td> <td>"; // line 20 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, ($context["contact"] ?? null), "message", [], "any", false, false, false, 20), "html", null, true); echo "</td> </tr> </table>"; } public function getTemplateName() { return "emails/contact.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 70 => 20, 63 => 16, 56 => 12, 49 => 8, 42 => 4, 37 => 1,); } public function getSourceContext() { return new Source("", "emails/contact.html.twig", "/var/www/html/mixchief_app/templates/emails/contact.html.twig"); } }