<?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;
/* network/profile/auctionhouse/listing.html.twig */
class __TwigTemplate_07682d6b4ebe2f46712ff701cec938a916dc3a7b56e02c4d194235493ba22d9b 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 "page.html.twig";
}
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", "network/profile/auctionhouse/listing.html.twig"));
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "network/profile/auctionhouse/listing.html.twig"));
$this->parent = $this->loadTemplate("page.html.twig", "network/profile/auctionhouse/listing.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
}
// line 2
public function block_content($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(), "block", "content"));
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "content"));
// line 3
echo " ";
$this->loadTemplate("network/profile/components/hero.html.twig", "network/profile/auctionhouse/listing.html.twig", 3)->display($context);
// line 4
echo "
";
// line 5
$this->loadTemplate("network/profile/components/listing.html.twig", "network/profile/auctionhouse/listing.html.twig", 5)->display(twig_array_merge($context, ["listing" => (isset($context["auctionhouses"]) || array_key_exists("auctionhouses", $context) ? $context["auctionhouses"] : (function () { throw new RuntimeError('Variable "auctionhouses" does not exist.', 5, $this->source); })())]));
// line 6
echo "
<div class=\"grid my-12 mb-20 place-items-center\">
";
// line 8
$this->loadTemplate("component/pagination.html.twig", "network/profile/auctionhouse/listing.html.twig", 8)->display(twig_array_merge($context, ["pagination" => (isset($context["auctionhouses"]) || array_key_exists("auctionhouses", $context) ? $context["auctionhouses"] : (function () { throw new RuntimeError('Variable "auctionhouses" does not exist.', 8, $this->source); })())]));
// line 9
echo " </div>
";
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
}
public function getTemplateName()
{
return "network/profile/auctionhouse/listing.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 82 => 9, 80 => 8, 76 => 6, 74 => 5, 71 => 4, 68 => 3, 58 => 2, 35 => 1,);
}
public function getSourceContext()
{
return new Source("{% extends 'page.html.twig' %}
{% block content %}
{% include 'network/profile/components/hero.html.twig' %}
{% include 'network/profile/components/listing.html.twig' with { listing: auctionhouses } %}
<div class=\"grid my-12 mb-20 place-items-center\">
{% include 'component/pagination.html.twig' with { pagination: auctionhouses } %}
</div>
{% endblock %}
", "network/profile/auctionhouse/listing.html.twig", "/var/www/vhosts/3forone.ch/httpdocs/abowire/templates/network/profile/auctionhouse/listing.html.twig");
}
}