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", "welcome_wizard.html", 1);
yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
}
public function block_content($context, array $blocks = [])
{
$macros = $this->macros;
// line 2
yield "
";
// line 31
yield from $this->loadTemplate("mss_pitch_translations.html", "welcome_wizard.html", 31)->unwrap()->yield($context);
// line 32
yield from $this->loadTemplate("premium_key_validation_strings.html", "welcome_wizard.html", 32)->unwrap()->yield($context);
// line 33
yield from $this->loadTemplate("settings_translations.html", "welcome_wizard.html", 33)->unwrap()->yield($context);
// line 34
yield "
";
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "welcome_wizard.html";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 129 => 34, 127 => 33, 125 => 32, 123 => 31, 106 => 17, 102 => 16, 98 => 15, 94 => 14, 90 => 13, 86 => 12, 82 => 11, 77 => 9, 73 => 8, 69 => 7, 65 => 6, 61 => 5, 57 => 4, 53 => 3, 50 => 2, 36 => 1,);
}
public function getSourceContext()
{
return new Source("", "welcome_wizard.html", "/home/circleci/mailpoet/mailpoet/views/welcome_wizard.html");
}
}