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); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 echo "
"; // line 10 $this->loadTemplate("segments/translations.html", "segments/static.html", 10)->display($context); } // line 14 public function block_after_translations($context, array $blocks = []) { $macros = $this->macros; // line 15 echo " "; echo do_action("mailpoet_segments_translations_after"); echo " "; } public function getTemplateName() { return "segments/static.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 70 => 15, 66 => 14, 62 => 10, 56 => 7, 51 => 4, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "segments/static.html", "/home/circleci/mailpoet/mailpoet/views/segments/static.html"); } }