source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 $this->displayBlock('content', $context, $blocks); } public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 2 echo " "; if ((($context["formType"] ?? null) == "others")) { // line 3 echo "
"; } else { // line 11 echo " "; echo ($context["post"] ?? null); echo " "; // line 12 echo ($context["form"] ?? null); echo " "; } } public function getTemplateName() { return "form/form_preview.html"; } public function getDebugInfo() { return array ( 66 => 12, 61 => 11, 53 => 6, 48 => 3, 45 => 2, 38 => 1,); } public function getSourceContext() { return new Source("", "form/form_preview.html", "/home/circleci/mailpoet/mailpoet/views/form/form_preview.html"); } }