<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
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;
/* Default/sections/order-book.html.twig */
class __TwigTemplate_df09797d7169cbbbe52b3a50908617442200037e4a949ef401ceabf445ca221a extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
$this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension');
$this->checkSecurity();
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Default/sections/order-book.html.twig"));
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Default/sections/order-book.html.twig"));
// line 1
echo "<section class=\"section_orderbook\">
<div class=\"orderbook_content\">
\t<div class=\"number_section\">
\t <div class=\"wrapper_innerpage\">03</div>
\t</div>
\t<div class=\"wrapper_mainpage\">
\t <div class=\"orderbook_text\">
\t\t";
// line 9
echo "\t\t<div class=\"title16 smalltitle\">ORDER OUR BOOK!</div>
\t\t<h2 class=\"h2_long\">";
// line 10
echo $this->extensions['Pimcore\Twig\Extension\DocumentEditableExtension']->renderEditable($context, "input", "order_book_heading", ["placeholder" => "Enter here", "htmlspecialchars" => false]);
echo "</h2>
\t\t<p>";
// line 11
echo $this->extensions['Pimcore\Twig\Extension\DocumentEditableExtension']->renderEditable($context, "input", "order_book_description", ["placeholder" => "Enter here"]);
echo "</p>
\t\t";
// line 12
echo $this->extensions['Pimcore\Twig\Extension\DocumentEditableExtension']->renderEditable($context, "link", "order_book_link", ["class" => "button button_red"]);
echo "
\t </div>
\t</div>
</div>
<div class=\"orderbook_img_mask\">
\t<div class=\"orderbook_img\"></div>
</div>
<div class=\"orderbook_scrolldown\">
\t<div class=\"wrapper_innerpage\"><a class=\"scrolldown title16\" href=\"#\"><span>SCROLL DOWN</span><i></i></a></div>
</div>
</section>";
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "Default/sections/order-book.html.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 65 => 12, 61 => 11, 57 => 10, 54 => 9, 45 => 1,);
}
public function getSourceContext()
{
return new Source("<section class=\"section_orderbook\">
<div class=\"orderbook_content\">
\t<div class=\"number_section\">
\t <div class=\"wrapper_innerpage\">03</div>
\t</div>
\t<div class=\"wrapper_mainpage\">
\t <div class=\"orderbook_text\">
\t\t{#TODO::Make small title selectable in original HTML and then make it editable in pimcore#}
\t\t<div class=\"title16 smalltitle\">ORDER OUR BOOK!</div>
\t\t<h2 class=\"h2_long\">{{pimcore_input('order_book_heading', {'placeholder':'Enter here', 'htmlspecialchars':false})}}</h2>
\t\t<p>{{pimcore_input('order_book_description', {'placeholder':'Enter here'})}}</p>
\t\t{{pimcore_link('order_book_link', {'class':'button button_red'})}}
\t </div>
\t</div>
</div>
<div class=\"orderbook_img_mask\">
\t<div class=\"orderbook_img\"></div>
</div>
<div class=\"orderbook_scrolldown\">
\t<div class=\"wrapper_innerpage\"><a class=\"scrolldown title16\" href=\"#\"><span>SCROLL DOWN</span><i></i></a></div>
</div>
</section>", "Default/sections/order-book.html.twig", "/var/www/atunp/templates/Default/sections/order-book.html.twig");
}
public function checkSecurity()
{
static $tags = array();
static $filters = array();
static $functions = array("pimcore_input" => 10, "pimcore_link" => 12);
try {
$this->sandbox->checkSecurity(
[],
[],
['pimcore_input', 'pimcore_link']
);
} catch (SecurityError $e) {
$e->setSourceContext($this->source);
if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
$e->setTemplateLine($tags[$e->getTagName()]);
} elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
$e->setTemplateLine($filters[$e->getFilterName()]);
} elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
$e->setTemplateLine($functions[$e->getFunctionName()]);
}
throw $e;
}
}
}