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", "newsletters.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 "
"; return; yield ''; } // line 62 public function block_after_translations($context, array $blocks = []) { $macros = $this->macros; // line 63 yield " "; yield do_action("mailpoet_newsletters_translations_after"); yield " "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "newsletters.html"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 244 => 63, 240 => 62, 231 => 57, 227 => 56, 223 => 55, 219 => 54, 216 => 53, 212 => 51, 208 => 50, 204 => 49, 200 => 48, 196 => 47, 192 => 46, 188 => 45, 184 => 44, 180 => 43, 176 => 42, 172 => 41, 168 => 40, 164 => 39, 159 => 37, 155 => 36, 151 => 35, 147 => 34, 142 => 32, 138 => 31, 134 => 30, 129 => 28, 125 => 27, 120 => 25, 115 => 23, 111 => 22, 106 => 20, 102 => 19, 98 => 18, 94 => 17, 90 => 16, 86 => 15, 82 => 14, 78 => 13, 74 => 12, 70 => 11, 66 => 10, 62 => 9, 57 => 8, 52 => 4, 48 => 3, 37 => 1,); } public function getSourceContext() { return new Source("", "newsletters.html", "/home/circleci/mailpoet/mailpoet/views/newsletters.html"); } }