<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
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;
use Twig\TemplateWrapper;
/* _header.html.twig */
class __TwigTemplate_416db42331396e9680ade676d445f5bf extends Template
{
private Source $source;
/**
* @var array<string, Template>
*/
private array $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "_header.html.twig"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "_header.html.twig"));
// line 1
yield "<header id=\"header\">
<div class=\"container\">
<div class=\"row\">
<div id=\"header-inside\" class=\"col col-xl-12 col-sm-12\">
<a href=\"/\">
<img src=\"";
// line 6
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("build/images/logo-eau.jpg"), "html", null, true);
yield "\" alt=\"Direction de l’Eau de la Communauté Urbaine du Grand Reims\"
width=\"140\" height=\"92\" />
</a>
";
// line 10
yield from $this->loadTemplate("_widget-customer-connection.html.twig", "_header.html.twig", 10)->unwrap()->yield($context);
// line 11
yield " </div>
";
// line 13
yield from $this->loadTemplate("_widget-menu.html.twig", "_header.html.twig", 13)->unwrap()->yield($context);
// line 14
yield "
</div>
</div>
</header>";
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
yield from [];
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName(): string
{
return "_header.html.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable(): bool
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo(): array
{
return array ( 70 => 14, 68 => 13, 64 => 11, 62 => 10, 55 => 6, 48 => 1,);
}
public function getSourceContext(): Source
{
return new Source("<header id=\"header\">
<div class=\"container\">
<div class=\"row\">
<div id=\"header-inside\" class=\"col col-xl-12 col-sm-12\">
<a href=\"/\">
<img src=\"{{ asset('build/images/logo-eau.jpg') }}\" alt=\"Direction de l’Eau de la Communauté Urbaine du Grand Reims\"
width=\"140\" height=\"92\" />
</a>
{% include '_widget-customer-connection.html.twig' %}
</div>
{% include '_widget-menu.html.twig' %}
</div>
</div>
</header>", "_header.html.twig", "/var/www/reims.fr/extranet/current/templates/_header.html.twig");
}
}