source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], ]; } 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", "automation.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 "
"; } public function getTemplateName() { return "automation.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 81 => 15, 77 => 14, 73 => 13, 69 => 12, 65 => 11, 61 => 10, 57 => 9, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "automation.html", "/home/circleci/mailpoet/mailpoet/views/automation.html"); } }