source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], 'after_translations' => [$this, 'block_after_translations'], ]; } protected function doGetParent(array $context) { // line 1 return "layout.html"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("layout.html", "segments/static.html", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 yield "
"; // line 10 yield from $this->loadTemplate("segments/translations.html", "segments/static.html", 10)->unwrap()->yield($context); return; yield ''; } // line 14 public function block_after_translations($context, array $blocks = []) { $macros = $this->macros; // line 15 yield " "; yield do_action("mailpoet_segments_translations_after"); yield " "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "segments/static.html"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 72 => 15, 68 => 14, 63 => 10, 57 => 7, 52 => 4, 48 => 3, 37 => 1,); } public function getSourceContext() { return new Source("", "segments/static.html", "/home/circleci/mailpoet/mailpoet/views/segments/static.html"); } }