var/cache/dev/twig/2f/2fa796db574b50e66144402e285c5304cf85adcfee6fba75225524e4afd2a31f.php line 145

Open in your IDE?
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\SandboxExtension;
  6. use Twig\Markup;
  7. use Twig\Sandbox\SecurityError;
  8. use Twig\Sandbox\SecurityNotAllowedTagError;
  9. use Twig\Sandbox\SecurityNotAllowedFilterError;
  10. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  11. use Twig\Source;
  12. use Twig\Template;
  13. /* @Twig/layout.html.twig */
  14. class __TwigTemplate_3c221eaab04d5d3da1281814c62e7a5fb872534835a8294cb2b7f2778b3587a2 extends \Twig\Template
  15. {
  16.     private $source;
  17.     private $macros = [];
  18.     public function __construct(Environment $env)
  19.     {
  20.         parent::__construct($env);
  21.         $this->source $this->getSourceContext();
  22.         $this->parent false;
  23.         $this->blocks = [
  24.             'before_html' => [$this'block_before_html'],
  25.             'title' => [$this'block_title'],
  26.             'head' => [$this'block_head'],
  27.             'body' => [$this'block_body'],
  28.             'after_html' => [$this'block_after_html'],
  29.         ];
  30.         $this->sandbox $this->env->getExtension('\Twig\Extension\SandboxExtension');
  31.         $tags = array("deprecated" => 1"block" => 2);
  32.         $filters = array("escape" => 6);
  33.         $functions = array("include" => 10"constant" => 20);
  34.         try {
  35.             $this->sandbox->checkSecurity(
  36.                 ['deprecated''block'],
  37.                 ['escape'],
  38.                 ['include''constant']
  39.             );
  40.         } catch (SecurityError $e) {
  41.             $e->setSourceContext($this->source);
  42.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  43.                 $e->setTemplateLine($tags[$e->getTagName()]);
  44.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  45.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  46.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  47.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  48.             }
  49.             throw $e;
  50.         }
  51.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  52.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@Twig/layout.html.twig"));
  53.     }
  54.     protected function doDisplay(array $context, array $blocks = [])
  55.     {
  56.         $macros $this->macros;
  57.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  58.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@Twig/layout.html.twig"));
  59.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  60.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@Twig/layout.html.twig"));
  61.         // line 1
  62.         $__internal_f607aeef2c31a95a7bf963452dff024ffaeb6aafbe4603f9ca3bec57be8633f4 = (("The template \"" $this->getTemplateName()) . "\" is deprecated since Symfony 4.4, will be removed in 5.0.");
  63.         @trigger_error($__internal_f607aeef2c31a95a7bf963452dff024ffaeb6aafbe4603f9ca3bec57be8633f4." (\"@Twig/layout.html.twig\" at line 1)."E_USER_DEPRECATED);
  64.         // line 2
  65.         $this->displayBlock('before_html'$context$blocks);
  66.         // line 3
  67.         echo "<!DOCTYPE html>
  68. <html>
  69.     <head>
  70.         <meta charset=\"";
  71.         // line 6
  72.         echo twig_escape_filter($this->env$this->sandbox->ensureToStringAllowed($this->env->getCharset(), 6$this->source), "html"nulltrue);
  73.         echo "\" />
  74.         <meta name=\"robots\" content=\"noindex,nofollow\" />
  75.         <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\" />
  76.         <title>";
  77.         // line 9
  78.         $this->displayBlock('title'$context$blocks);
  79.         echo "</title>
  80.         <link rel=\"icon\" type=\"image/png\" href=\"";
  81.         // line 10
  82.         echo twig_include($this->env$context"@Twig/images/favicon.png.base64");
  83.         echo "\">
  84.         <style>";
  85.         // line 11
  86.         echo twig_include($this->env$context"@Twig/exception.css.twig");
  87.         echo "</style>
  88.         ";
  89.         // line 12
  90.         $this->displayBlock('head'$context$blocks);
  91.         // line 13
  92.         echo "    </head>
  93.     <body>
  94.         <header>
  95.             <div class=\"container\">
  96.                 <h1 class=\"logo\">";
  97.         // line 17
  98.         echo twig_include($this->env$context"@Twig/images/symfony-logo.svg");
  99.         echo " Symfony Exception</h1>
  100.                 <div class=\"help-link\">
  101.                     <a href=\"https://symfony.com/doc/";
  102.         // line 20
  103.         echo twig_escape_filter($this->envtwig_constant("Symfony\\Component\\HttpKernel\\Kernel::VERSION"), "html"nulltrue);
  104.         echo "/index.html\">
  105.                         <span class=\"icon\">";
  106.         // line 21
  107.         echo twig_include($this->env$context"@Twig/images/icon-book.svg");
  108.         echo "</span>
  109.                         <span class=\"hidden-xs-down\">Symfony</span> Docs
  110.                     </a>
  111.                 </div>
  112.                 <div class=\"help-link\">
  113.                     <a href=\"https://symfony.com/support\">
  114.                         <span class=\"icon\">";
  115.         // line 28
  116.         echo twig_include($this->env$context"@Twig/images/icon-support.svg");
  117.         echo "</span>
  118.                         <span class=\"hidden-xs-down\">Symfony</span> Support
  119.                     </a>
  120.                 </div>
  121.             </div>
  122.         </header>
  123.         ";
  124.         // line 35
  125.         $this->displayBlock('body'$context$blocks);
  126.         // line 36
  127.         echo "        ";
  128.         echo twig_include($this->env$context"@Twig/base_js.html.twig");
  129.         echo "
  130.     </body>
  131. </html>
  132. ";
  133.         // line 39
  134.         $this->displayBlock('after_html'$context$blocks);
  135.         
  136.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  137.         
  138.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  139.     }
  140.     // line 2
  141.     public function block_before_html($context, array $blocks = [])
  142.     {
  143.         $macros $this->macros;
  144.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  145.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""before_html"));
  146.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  147.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""before_html"));
  148.         
  149.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  150.         
  151.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  152.     }
  153.     // line 9
  154.     public function block_title($context, array $blocks = [])
  155.     {
  156.         $macros $this->macros;
  157.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  158.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""title"));
  159.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  160.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""title"));
  161.         
  162.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  163.         
  164.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  165.     }
  166.     // line 12
  167.     public function block_head($context, array $blocks = [])
  168.     {
  169.         $macros $this->macros;
  170.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  171.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""head"));
  172.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  173.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""head"));
  174.         
  175.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  176.         
  177.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  178.     }
  179.     // line 35
  180.     public function block_body($context, array $blocks = [])
  181.     {
  182.         $macros $this->macros;
  183.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  184.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""body"));
  185.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  186.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""body"));
  187.         
  188.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  189.         
  190.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  191.     }
  192.     // line 39
  193.     public function block_after_html($context, array $blocks = [])
  194.     {
  195.         $macros $this->macros;
  196.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  197.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""after_html"));
  198.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  199.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""after_html"));
  200.         
  201.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  202.         
  203.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  204.     }
  205.     public function getTemplateName()
  206.     {
  207.         return "@Twig/layout.html.twig";
  208.     }
  209.     public function isTraitable()
  210.     {
  211.         return false;
  212.     }
  213.     public function getDebugInfo()
  214.     {
  215.         return array (  233 => 39,  215 => 35,  197 => 12,  179 => 9,  161 => 2,  151 => 39,  144 => 36,  142 => 35,  132 => 28,  122 => 21,  118 => 20,  112 => 17,  106 => 13,  104 => 12,  100 => 11,  96 => 10,  92 => 9,  86 => 6,  81 => 3,  79 => 2,  76 => 1,);
  216.     }
  217.     public function getSourceContext()
  218.     {
  219.         return new Source("{% deprecated 'The template \"' ~ _self ~'\" is deprecated since Symfony 4.4, will be removed in 5.0.' %}
  220. {% block before_html %}{% endblock %}
  221. <!DOCTYPE html>
  222. <html>
  223.     <head>
  224.         <meta charset=\"{{ _charset }}\" />
  225.         <meta name=\"robots\" content=\"noindex,nofollow\" />
  226.         <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\" />
  227.         <title>{% block title %}{% endblock %}</title>
  228.         <link rel=\"icon\" type=\"image/png\" href=\"{{ include('@Twig/images/favicon.png.base64') }}\">
  229.         <style>{{ include('@Twig/exception.css.twig') }}</style>
  230.         {% block head %}{% endblock %}
  231.     </head>
  232.     <body>
  233.         <header>
  234.             <div class=\"container\">
  235.                 <h1 class=\"logo\">{{ include('@Twig/images/symfony-logo.svg') }} Symfony Exception</h1>
  236.                 <div class=\"help-link\">
  237.                     <a href=\"https://symfony.com/doc/{{ constant('Symfony\\\\Component\\\\HttpKernel\\\\Kernel::VERSION') }}/index.html\">
  238.                         <span class=\"icon\">{{ include('@Twig/images/icon-book.svg') }}</span>
  239.                         <span class=\"hidden-xs-down\">Symfony</span> Docs
  240.                     </a>
  241.                 </div>
  242.                 <div class=\"help-link\">
  243.                     <a href=\"https://symfony.com/support\">
  244.                         <span class=\"icon\">{{ include('@Twig/images/icon-support.svg') }}</span>
  245.                         <span class=\"hidden-xs-down\">Symfony</span> Support
  246.                     </a>
  247.                 </div>
  248.             </div>
  249.         </header>
  250.         {% block body %}{% endblock %}
  251.         {{ include('@Twig/base_js.html.twig') }}
  252.     </body>
  253. </html>
  254. {% block after_html %}{% endblock %}
  255. ""@Twig/layout.html.twig""/var/www/projects/simplymeet-test/vendor/symfony/twig-bundle/Resources/views/layout.html.twig");
  256.     }
  257. }