<?php if (!defined('ABSPATH')) exit; use MailPoetVendor\Twig\Environment; use MailPoetVendor\Twig\Error\LoaderError; use MailPoetVendor\Twig\Error\RuntimeError; use MailPoetVendor\Twig\Extension\SandboxExtension; use MailPoetVendor\Twig\Markup; use MailPoetVendor\Twig\Sandbox\SecurityError; use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedTagError; use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedFilterError; use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedFunctionError; use MailPoetVendor\Twig\Source; use MailPoetVendor\Twig\Template; /* index.html */ class __TwigTemplate_0eb547304658805aad788d320f10bf1f292797b5e6d745a3bf617584da017051 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->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", "index.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 " <h1>"; echo "Welcome!"; echo "</h1> <p>"; // line 5 echo \MailPoetVendor\twig_sprintf(\MailPoetVendor\twig_sprintf($this->extensions['MailPoet\Twig\I18n']->translate("%sSet up%s MailPoet and start sending."), "<a href=\"%s\">", "</a>"), admin_url("admin.php?page=mailpoet-settings")); // line 9 echo "</p> "; } public function getTemplateName() { return "index.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 57 => 9, 55 => 5, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "index.html", "/home/circleci/mailpoet/mailpoet/views/index.html"); } }