<?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;

/* base.html.twig */
class __TwigTemplate_ba63e353340cef5eb2bc833e58eb3abb 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 = [
            'globalStylesheets' => [$this, 'block_globalStylesheets'],
            'stylesheets' => [$this, 'block_stylesheets'],
            'body_class' => [$this, 'block_body_class'],
            'body_attr_datas' => [$this, 'block_body_attr_datas'],
            'pre_body_wrapper' => [$this, 'block_pre_body_wrapper'],
            'body' => [$this, 'block_body'],
            'header' => [$this, 'block_header'],
            'flashes' => [$this, 'block_flashes'],
            'main_content' => [$this, 'block_main_content'],
            'title' => [$this, 'block_title'],
            'pre_content' => [$this, 'block_pre_content'],
            'content' => [$this, 'block_content'],
            'post_content' => [$this, 'block_post_content'],
            'footer' => [$this, 'block_footer'],
            'javascripts' => [$this, 'block_javascripts'],
        ];
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 1
        yield "<!DOCTYPE html>
<html lang=\"\" prefix=\"og: http://ogp.me/ns#\" data-culture=\"\">
<head>
  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
  <meta charset=\"UTF-8\"/>
  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=5\"/>
  <meta name=\"format-detection\" content=\"telephone=no\">
  <title>Vente-Unique Logistics</title>
  ";
        // line 9
        yield from $this->unwrap()->yieldBlock('globalStylesheets', $context, $blocks);
        // line 22
        yield "
  ";
        // line 23
        yield from $this->unwrap()->yieldBlock('stylesheets', $context, $blocks);
        // line 25
        yield "</head>

<body class=\"";
        // line 27
        yield from $this->unwrap()->yieldBlock('body_class', $context, $blocks);
        yield "\" ";
        yield from $this->unwrap()->yieldBlock('body_attr_datas', $context, $blocks);
        yield " data-offset=\"100\">

";
        // line 29
        yield from $this->unwrap()->yieldBlock('pre_body_wrapper', $context, $blocks);
        // line 30
        yield "
";
        // line 31
        yield from $this->unwrap()->yieldBlock('body', $context, $blocks);
        // line 53
        yield "
";
        // line 54
        yield from $this->unwrap()->yieldBlock('javascripts', $context, $blocks);
        // line 55
        yield "
</body>
</html>
";
        yield from [];
    }

    // line 9
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_globalStylesheets(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 10
        yield "    <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">
    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">
    <link rel=\"preconnect\" href=\"https://cdn1.vente-unique.com\">

    <link rel=\"preload\" href=\"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600&display=block\" as=\"style\" onload=\"this.rel=\x27stylesheet\x27\">
    <noscript>
      <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600&display=block\">
    </noscript>

    <!-- FONT LOCAL-->
    <link rel=\"preload\" as=\"font\" href=\"https://cdn1.vente-unique.com/fonts/vu/venteunique_6_22.woff2\" type=\"font/woff2\" crossorigin=\"anonymous\">
  ";
        yield from [];
    }

    // line 23
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_stylesheets(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 24
        yield "  ";
        yield from [];
    }

    // line 27
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_body_class(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_body_attr_datas(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 29
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_pre_body_wrapper(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 31
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_body(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 32
        yield "  <div class=\"container\">

    ";
        // line 34
        yield from $this->unwrap()->yieldBlock('header', $context, $blocks);
        // line 36
        yield "
    ";
        // line 37
        yield from $this->unwrap()->yieldBlock('flashes', $context, $blocks);
        // line 38
        yield "
    <div class=\"main-content\">
      ";
        // line 40
        yield from $this->unwrap()->yieldBlock('main_content', $context, $blocks);
        // line 46
        yield "    </div>

    ";
        // line 48
        yield from $this->unwrap()->yieldBlock('footer', $context, $blocks);
        // line 50
        yield "
  </div>
";
        yield from [];
    }

    // line 34
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_header(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 35
        yield "    ";
        yield from [];
    }

    // line 37
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_flashes(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 40
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_main_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 41
        yield "        ";
        yield from $this->unwrap()->yieldBlock('title', $context, $blocks);
        // line 42
        yield "        ";
        yield from $this->unwrap()->yieldBlock('pre_content', $context, $blocks);
        // line 43
        yield "        ";
        yield from $this->unwrap()->yieldBlock('content', $context, $blocks);
        // line 44
        yield "        ";
        yield from $this->unwrap()->yieldBlock('post_content', $context, $blocks);
        // line 45
        yield "      ";
        yield from [];
    }

    // line 41
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_title(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 42
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_pre_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 43
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 44
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_post_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    // line 48
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_footer(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 49
        yield "    ";
        yield from [];
    }

    // line 54
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_javascripts(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "base.html.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  304 => 54,  299 => 49,  292 => 48,  282 => 44,  272 => 43,  262 => 42,  252 => 41,  247 => 45,  244 => 44,  241 => 43,  238 => 42,  235 => 41,  228 => 40,  218 => 37,  213 => 35,  206 => 34,  199 => 50,  197 => 48,  193 => 46,  191 => 40,  187 => 38,  185 => 37,  182 => 36,  180 => 34,  176 => 32,  169 => 31,  159 => 29,  140 => 27,  135 => 24,  128 => 23,  112 => 10,  105 => 9,  97 => 55,  95 => 54,  92 => 53,  90 => 31,  87 => 30,  85 => 29,  78 => 27,  74 => 25,  72 => 23,  69 => 22,  67 => 9,  57 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "base.html.twig", "/var/www/fulfillment/api/templates/base.html.twig");
    }
}
