<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;

/* @email/zurb_2/notification/body.txt.twig */
class __TwigTemplate_77a3ed704c7e4b0bffd05e871591472625dde13866a4b18be9b9983f3cd5ba03 extends \Twig\Template
{
    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->parent = false;

        $this->blocks = [
            'lead' => [$this, 'block_lead'],
            'content' => [$this, 'block_content'],
            'action' => [$this, 'block_action'],
            'exception' => [$this, 'block_exception'],
        ];
    }

    protected function doDisplay(array $context, array $blocks = [])
    {
        // line 1
        $this->displayBlock('lead', $context, $blocks);
        // line 4
        echo "
";
        // line 5
        $this->displayBlock('content', $context, $blocks);
        // line 8
        echo "
";
        // line 9
        $this->displayBlock('action', $context, $blocks);
        // line 14
        echo "
";
        // line 15
        $this->displayBlock('exception', $context, $blocks);
    }

    // line 1
    public function block_lead($context, array $blocks = [])
    {
        // line 2
        echo $this->getAttribute(($context["email"] ?? null), "subject", []);
        echo "
";
    }

    // line 5
    public function block_content($context, array $blocks = [])
    {
        // line 6
        echo ($context["content"] ?? null);
        echo "
";
    }

    // line 9
    public function block_action($context, array $blocks = [])
    {
        // line 10
        if (($context["action_url"] ?? null)) {
            // line 11
            echo ($context["action_url"] ?? null);
            echo ": ";
            echo ($context["action_text"] ?? null);
            echo "
";
        }
    }

    // line 15
    public function block_exception($context, array $blocks = [])
    {
        // line 16
        if (($context["exception"] ?? null)) {
            // line 17
            echo "Exception stack trace attached.
";
            // line 18
            echo ($context["exception"] ?? null);
            echo "
";
        }
    }

    public function getTemplateName()
    {
        return "@email/zurb_2/notification/body.txt.twig";
    }

    public function getDebugInfo()
    {
        return array (  93 => 18,  90 => 17,  88 => 16,  85 => 15,  76 => 11,  74 => 10,  71 => 9,  65 => 6,  62 => 5,  56 => 2,  53 => 1,  49 => 15,  46 => 14,  44 => 9,  41 => 8,  39 => 5,  36 => 4,  34 => 1,);
    }

    /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
    public function getSource()
    {
        @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);

        return $this->getSourceContext()->getCode();
    }

    public function getSourceContext()
    {
        return new Source("", "@email/zurb_2/notification/body.txt.twig", "/var/www/html/vendor/symfony/twig-bridge/Resources/views/Email/zurb_2/notification/body.txt.twig");
    }
}
