var/cache/dev/twig/a9/a9c88c20c4ec4ae89b0f4d9ec01dc7e86769a8a1f5d5a9c507bfd3e7903357d0.php line 39

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. /* front/layout/base.html.twig */
  14. class __TwigTemplate_c91cf7724bcc18e59a2a1c2bf185ac1d18d8eaacf7255e657fb013b53913548c extends 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.             'title' => [$this'block_title'],
  25.             'stylesheets' => [$this'block_stylesheets'],
  26.             'javascripts' => [$this'block_javascripts'],
  27.             'bodyCssClasses' => [$this'block_bodyCssClasses'],
  28.             'body' => [$this'block_body'],
  29.             'content' => [$this'block_content'],
  30.         ];
  31.     }
  32.     protected function doDisplay(array $context, array $blocks = [])
  33.     {
  34.         $macros $this->macros;
  35.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  36.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/layout/base.html.twig"));
  37.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  38.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/layout/base.html.twig"));
  39.         // line 1
  40.         echo "<!DOCTYPE html>
  41. <html>
  42. <head>
  43.     <meta charset=\"UTF-8\">
  44.     <title>";
  45.         // line 5
  46.         $this->displayBlock('title'$context$blocks);
  47.         echo "</title>
  48.     <!-- Required meta tags always come first -->
  49.     <meta charset=\"utf-8\">
  50.     <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
  51.     <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">
  52.     <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"";
  53.         // line 11
  54.         echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("build/images/apple-touch-icon.png"), "html"nulltrue);
  55.         echo "\">
  56.     <link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"";
  57.         // line 12
  58.         echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("build/images/favicon-32x32.png"), "html"nulltrue);
  59.         echo "\">
  60.     <link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"";
  61.         // line 13
  62.         echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("build/images/favicon-16x16.png"), "html"nulltrue);
  63.         echo "\">
  64.     ";
  65.         // line 15
  66.         $this->displayBlock('stylesheets'$context$blocks);
  67.         // line 18
  68.         echo "    ";
  69.         $this->displayBlock('javascripts'$context$blocks);
  70.         // line 30
  71.         echo "
  72.     <!-- Google tag (gtag.js) -->
  73.     <script async src=\"https://www.googletagmanager.com/gtag/js?id=G-W30R85L0MT\"></script>
  74.     <script>
  75.         window.dataLayer = window.dataLayer || [];
  76.         function gtag() {
  77.             dataLayer.push(arguments);
  78.         }
  79.         gtag('js', new Date());
  80.         gtag('config', 'G-W30R85L0MT');
  81.     </script>
  82.     <script src=\"https://js.stripe.com/v3/\"></script>
  83.     <style>
  84.         /**
  85.          * The CSS shown here will not be introduced in the Quickstart guide, but shows
  86.          * how you can use CSS to style your Element's container.
  87.          */
  88.         .StripeElement {
  89.             box-sizing: border-box;
  90.             height: 40px;
  91.             width: 100%;
  92.             padding: 10px 12px;
  93.             border: 1px solid transparent;
  94.             border-radius: 4px;
  95.             background-color: white;
  96.             box-shadow: 0 1px 3px 0 #e6ebf1;
  97.             -webkit-transition: box-shadow 150ms ease;
  98.             transition: box-shadow 150ms ease;
  99.         }
  100.         .StripeElement--focus {
  101.             box-shadow: 0 1px 3px 0 #cfd7df;
  102.         }
  103.         .StripeElement--invalid {
  104.             border-color: #0A9B01;
  105.         }
  106.         .StripeElement--webkit-autofill {
  107.             background-color: #fefde5 !important;
  108.         }
  109.     </style>
  110.     <link rel=\"stylesheet\" href=\"//cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css\">
  111. </head>
  112. <body class=\"";
  113.         // line 77
  114.         $this->displayBlock('bodyCssClasses'$context$blocks);
  115.         echo "\">
  116. <!-- Preloader -->
  117. <div id=\"hellopreloader\">
  118.     <div class=\"preloader\">
  119.         <svg width=\"45\" height=\"45\" stroke=\"#fff\">
  120.             <g fill=\"none\" fill-rule=\"evenodd\" stroke-width=\"2\" transform=\"translate(1 1)\">
  121.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  122.                     <animate attributeName=\"r\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  123.                              values=\"6;22\"/>
  124.                     <animate attributeName=\"stroke-opacity\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  125.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  126.                     <animate attributeName=\"stroke-width\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  127.                              repeatCount=\"indefinite\" values=\"2;0\"/>
  128.                 </circle>
  129.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  130.                     <animate attributeName=\"r\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  131.                              values=\"6;22\"/>
  132.                     <animate attributeName=\"stroke-opacity\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\"
  133.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  134.                     <animate attributeName=\"stroke-width\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  135.                              values=\"2;0\"/>
  136.                 </circle>
  137.                 <circle cx=\"22\" cy=\"22\" r=\"8\">
  138.                     <animate attributeName=\"r\" begin=\"0s\" calcMode=\"linear\" dur=\"1.5s\" repeatCount=\"indefinite\"
  139.                              values=\"6;1;2;3;4;5;6\"/>
  140.                 </circle>
  141.             </g>
  142.         </svg>
  143.         <div class=\"text\">Loading ...</div>
  144.     </div>
  145. </div>
  146. <!-- ... end Preloader -->
  147. ";
  148.         // line 110
  149.         $this->displayBlock('body'$context$blocks);
  150.         // line 124
  151.         echo "</body>
  152. </html>
  153. ";
  154.         
  155.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  156.         
  157.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  158.     }
  159.     // line 5
  160.     public function block_title($context, array $blocks = [])
  161.     {
  162.         $macros $this->macros;
  163.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  164.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""title"));
  165.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  166.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""title"));
  167.         echo "BikingMan";
  168.         
  169.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  170.         
  171.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  172.     }
  173.     // line 15
  174.     public function block_stylesheets($context, array $blocks = [])
  175.     {
  176.         $macros $this->macros;
  177.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  178.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""stylesheets"));
  179.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  180.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""stylesheets"));
  181.         // line 16
  182.         echo "        ";
  183.         echo $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackLinkTags("app");
  184.         echo "
  185.     ";
  186.         
  187.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  188.         
  189.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  190.     }
  191.     // line 18
  192.     public function block_javascripts($context, array $blocks = [])
  193.     {
  194.         $macros $this->macros;
  195.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  196.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""javascripts"));
  197.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  198.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""javascripts"));
  199.         // line 19
  200.         echo "        ";
  201.         echo $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("app");
  202.         echo "
  203.         <script>
  204.             \$(document).ready(function () {
  205.                 ";
  206.         // line 22
  207.         $context['_parent'] = $context;
  208.         $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'22$this->source); })()), "flashes", [], "method"falsefalsefalse22));
  209.         foreach ($context['_seq'] as $context["type"] => $context["messages"]) {
  210.             // line 23
  211.             echo "                ";
  212.             $context['_parent'] = $context;
  213.             $context['_seq'] = twig_ensure_traversable($context["messages"]);
  214.             foreach ($context['_seq'] as $context["_key"] => $context["message"]) {
  215.                 // line 24
  216.                 echo "                \$.SwalFlashAlert( \"";
  217.                 echo twig_escape_filter($this->env$context["type"], "html"nulltrue);
  218.                 echo "\", \"";
  219.                 echo twig_escape_filter($this->env$context["message"], "html"nulltrue);
  220.                 echo "\");
  221.                 ";
  222.             }
  223.             $_parent $context['_parent'];
  224.             unset($context['_seq'], $context['_iterated'], $context['_key'], $context['message'], $context['_parent'], $context['loop']);
  225.             $context array_intersect_key($context$_parent) + $_parent;
  226.             // line 26
  227.             echo "                ";
  228.         }
  229.         $_parent $context['_parent'];
  230.         unset($context['_seq'], $context['_iterated'], $context['type'], $context['messages'], $context['_parent'], $context['loop']);
  231.         $context array_intersect_key($context$_parent) + $_parent;
  232.         // line 27
  233.         echo "            });
  234.         </script>
  235.     ";
  236.         
  237.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  238.         
  239.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  240.     }
  241.     // line 77
  242.     public function block_bodyCssClasses($context, array $blocks = [])
  243.     {
  244.         $macros $this->macros;
  245.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  246.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""bodyCssClasses"));
  247.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  248.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""bodyCssClasses"));
  249.         echo "page-has-left-panels ";
  250.         
  251.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  252.         
  253.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  254.     }
  255.     // line 110
  256.     public function block_body($context, array $blocks = [])
  257.     {
  258.         $macros $this->macros;
  259.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  260.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""body"));
  261.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  262.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""body"));
  263.         // line 111
  264.         echo "
  265.     ";
  266.         // line 112
  267.         if (twig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'112$this->source); })()), "user", [], "any"falsefalsefalse112)) {
  268.             // line 113
  269.             echo "        ";
  270.             if (($this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_ADMIN") || $this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_ORGANIZER"))) {
  271.                 // line 114
  272.                 echo "            ";
  273.                 $this->loadTemplate("front/layout/base.html.twig""front/layout/base.html.twig"114"746841141")->display($context);
  274.                 // line 115
  275.                 echo "        ";
  276.             } else {
  277.                 // line 116
  278.                 echo "            ";
  279.                 $this->loadTemplate("front/layout/base.html.twig""front/layout/base.html.twig"116"796017599")->display($context);
  280.                 // line 117
  281.                 echo "        ";
  282.             }
  283.             // line 118
  284.             echo "    ";
  285.         }
  286.         // line 119
  287.         echo "
  288.     ";
  289.         // line 120
  290.         $this->loadTemplate("front/layout/base.html.twig""front/layout/base.html.twig"120"761819334")->display($context);
  291.         // line 121
  292.         echo "
  293.     ";
  294.         // line 122
  295.         $this->displayBlock('content'$context$blocks);
  296.         
  297.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  298.         
  299.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  300.     }
  301.     public function block_content($context, array $blocks = [])
  302.     {
  303.         $macros $this->macros;
  304.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  305.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""content"));
  306.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  307.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""content"));
  308.         
  309.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  310.         
  311.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  312.     }
  313.     public function getTemplateName()
  314.     {
  315.         return "front/layout/base.html.twig";
  316.     }
  317.     public function isTraitable()
  318.     {
  319.         return false;
  320.     }
  321.     public function getDebugInfo()
  322.     {
  323.         return array (  338 => 122,  335 => 121,  333 => 120,  330 => 119,  327 => 118,  324 => 117,  321 => 116,  318 => 115,  315 => 114,  312 => 113,  310 => 112,  307 => 111,  297 => 110,  278 => 77,  266 => 27,  260 => 26,  249 => 24,  244 => 23,  240 => 22,  233 => 19,  223 => 18,  210 => 16,  200 => 15,  181 => 5,  169 => 124,  167 => 110,  131 => 77,  82 => 30,  79 => 18,  77 => 15,  72 => 13,  68 => 12,  64 => 11,  55 => 5,  49 => 1,);
  324.     }
  325.     public function getSourceContext()
  326.     {
  327.         return new Source("<!DOCTYPE html>
  328. <html>
  329. <head>
  330.     <meta charset=\"UTF-8\">
  331.     <title>{% block title %}BikingMan{% endblock %}</title>
  332.     <!-- Required meta tags always come first -->
  333.     <meta charset=\"utf-8\">
  334.     <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
  335.     <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">
  336.     <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"{{ asset('build/images/apple-touch-icon.png') }}\">
  337.     <link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"{{ asset('build/images/favicon-32x32.png') }}\">
  338.     <link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"{{ asset('build/images/favicon-16x16.png') }}\">
  339.     {% block stylesheets %}
  340.         {{ encore_entry_link_tags('app') }}
  341.     {% endblock %}
  342.     {% block javascripts %}
  343.         {{ encore_entry_script_tags('app') }}
  344.         <script>
  345.             \$(document).ready(function () {
  346.                 {% for type, messages in app.flashes() %}
  347.                 {% for message in messages %}
  348.                 \$.SwalFlashAlert( \"{{ type }}\", \"{{ message }}\");
  349.                 {% endfor %}
  350.                 {% endfor %}
  351.             });
  352.         </script>
  353.     {% endblock %}
  354.     <!-- Google tag (gtag.js) -->
  355.     <script async src=\"https://www.googletagmanager.com/gtag/js?id=G-W30R85L0MT\"></script>
  356.     <script>
  357.         window.dataLayer = window.dataLayer || [];
  358.         function gtag() {
  359.             dataLayer.push(arguments);
  360.         }
  361.         gtag('js', new Date());
  362.         gtag('config', 'G-W30R85L0MT');
  363.     </script>
  364.     <script src=\"https://js.stripe.com/v3/\"></script>
  365.     <style>
  366.         /**
  367.          * The CSS shown here will not be introduced in the Quickstart guide, but shows
  368.          * how you can use CSS to style your Element's container.
  369.          */
  370.         .StripeElement {
  371.             box-sizing: border-box;
  372.             height: 40px;
  373.             width: 100%;
  374.             padding: 10px 12px;
  375.             border: 1px solid transparent;
  376.             border-radius: 4px;
  377.             background-color: white;
  378.             box-shadow: 0 1px 3px 0 #e6ebf1;
  379.             -webkit-transition: box-shadow 150ms ease;
  380.             transition: box-shadow 150ms ease;
  381.         }
  382.         .StripeElement--focus {
  383.             box-shadow: 0 1px 3px 0 #cfd7df;
  384.         }
  385.         .StripeElement--invalid {
  386.             border-color: #0A9B01;
  387.         }
  388.         .StripeElement--webkit-autofill {
  389.             background-color: #fefde5 !important;
  390.         }
  391.     </style>
  392.     <link rel=\"stylesheet\" href=\"//cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css\">
  393. </head>
  394. <body class=\"{% block bodyCssClasses %}page-has-left-panels {% endblock %}\">
  395. <!-- Preloader -->
  396. <div id=\"hellopreloader\">
  397.     <div class=\"preloader\">
  398.         <svg width=\"45\" height=\"45\" stroke=\"#fff\">
  399.             <g fill=\"none\" fill-rule=\"evenodd\" stroke-width=\"2\" transform=\"translate(1 1)\">
  400.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  401.                     <animate attributeName=\"r\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  402.                              values=\"6;22\"/>
  403.                     <animate attributeName=\"stroke-opacity\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  404.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  405.                     <animate attributeName=\"stroke-width\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  406.                              repeatCount=\"indefinite\" values=\"2;0\"/>
  407.                 </circle>
  408.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  409.                     <animate attributeName=\"r\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  410.                              values=\"6;22\"/>
  411.                     <animate attributeName=\"stroke-opacity\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\"
  412.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  413.                     <animate attributeName=\"stroke-width\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  414.                              values=\"2;0\"/>
  415.                 </circle>
  416.                 <circle cx=\"22\" cy=\"22\" r=\"8\">
  417.                     <animate attributeName=\"r\" begin=\"0s\" calcMode=\"linear\" dur=\"1.5s\" repeatCount=\"indefinite\"
  418.                              values=\"6;1;2;3;4;5;6\"/>
  419.                 </circle>
  420.             </g>
  421.         </svg>
  422.         <div class=\"text\">Loading ...</div>
  423.     </div>
  424. </div>
  425. <!-- ... end Preloader -->
  426. {% block body %}
  427.     {% if app.user %}
  428.         {% if is_granted('ROLE_ADMIN') or is_granted('ROLE_ORGANIZER') %}
  429.             {% embed 'back/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %}
  430.         {% else %}
  431.             {% embed 'front/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %}
  432.         {% endif %}
  433.     {% endif %}
  434.     {% embed 'front/layout/section/header.html.twig' %}{% endembed %}
  435.     {% block content %}{% endblock %}
  436. {% endblock %}
  437. </body>
  438. </html>
  439. ""front/layout/base.html.twig""/srv/www/bm_dev_new/templates/front/layout/base.html.twig");
  440.     }
  441. }
  442. /* front/layout/base.html.twig */
  443. class __TwigTemplate_c91cf7724bcc18e59a2a1c2bf185ac1d18d8eaacf7255e657fb013b53913548c___746841141 extends Template
  444. {
  445.     private $source;
  446.     private $macros = [];
  447.     public function __construct(Environment $env)
  448.     {
  449.         parent::__construct($env);
  450.         $this->source $this->getSourceContext();
  451.         $this->blocks = [
  452.         ];
  453.     }
  454.     protected function doGetParent(array $context)
  455.     {
  456.         // line 114
  457.         return "back/layout/section/fixed-sidebar-left.html.twig";
  458.     }
  459.     protected function doDisplay(array $context, array $blocks = [])
  460.     {
  461.         $macros $this->macros;
  462.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  463.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/layout/base.html.twig"));
  464.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  465.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/layout/base.html.twig"));
  466.         $this->parent $this->loadTemplate("back/layout/section/fixed-sidebar-left.html.twig""front/layout/base.html.twig"114);
  467.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  468.         
  469.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  470.         
  471.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  472.     }
  473.     public function getTemplateName()
  474.     {
  475.         return "front/layout/base.html.twig";
  476.     }
  477.     public function isTraitable()
  478.     {
  479.         return false;
  480.     }
  481.     public function getDebugInfo()
  482.     {
  483.         return array (  530 => 114,  338 => 122,  335 => 121,  333 => 120,  330 => 119,  327 => 118,  324 => 117,  321 => 116,  318 => 115,  315 => 114,  312 => 113,  310 => 112,  307 => 111,  297 => 110,  278 => 77,  266 => 27,  260 => 26,  249 => 24,  244 => 23,  240 => 22,  233 => 19,  223 => 18,  210 => 16,  200 => 15,  181 => 5,  169 => 124,  167 => 110,  131 => 77,  82 => 30,  79 => 18,  77 => 15,  72 => 13,  68 => 12,  64 => 11,  55 => 5,  49 => 1,);
  484.     }
  485.     public function getSourceContext()
  486.     {
  487.         return new Source("<!DOCTYPE html>
  488. <html>
  489. <head>
  490.     <meta charset=\"UTF-8\">
  491.     <title>{% block title %}BikingMan{% endblock %}</title>
  492.     <!-- Required meta tags always come first -->
  493.     <meta charset=\"utf-8\">
  494.     <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
  495.     <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">
  496.     <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"{{ asset('build/images/apple-touch-icon.png') }}\">
  497.     <link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"{{ asset('build/images/favicon-32x32.png') }}\">
  498.     <link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"{{ asset('build/images/favicon-16x16.png') }}\">
  499.     {% block stylesheets %}
  500.         {{ encore_entry_link_tags('app') }}
  501.     {% endblock %}
  502.     {% block javascripts %}
  503.         {{ encore_entry_script_tags('app') }}
  504.         <script>
  505.             \$(document).ready(function () {
  506.                 {% for type, messages in app.flashes() %}
  507.                 {% for message in messages %}
  508.                 \$.SwalFlashAlert( \"{{ type }}\", \"{{ message }}\");
  509.                 {% endfor %}
  510.                 {% endfor %}
  511.             });
  512.         </script>
  513.     {% endblock %}
  514.     <!-- Google tag (gtag.js) -->
  515.     <script async src=\"https://www.googletagmanager.com/gtag/js?id=G-W30R85L0MT\"></script>
  516.     <script>
  517.         window.dataLayer = window.dataLayer || [];
  518.         function gtag() {
  519.             dataLayer.push(arguments);
  520.         }
  521.         gtag('js', new Date());
  522.         gtag('config', 'G-W30R85L0MT');
  523.     </script>
  524.     <script src=\"https://js.stripe.com/v3/\"></script>
  525.     <style>
  526.         /**
  527.          * The CSS shown here will not be introduced in the Quickstart guide, but shows
  528.          * how you can use CSS to style your Element's container.
  529.          */
  530.         .StripeElement {
  531.             box-sizing: border-box;
  532.             height: 40px;
  533.             width: 100%;
  534.             padding: 10px 12px;
  535.             border: 1px solid transparent;
  536.             border-radius: 4px;
  537.             background-color: white;
  538.             box-shadow: 0 1px 3px 0 #e6ebf1;
  539.             -webkit-transition: box-shadow 150ms ease;
  540.             transition: box-shadow 150ms ease;
  541.         }
  542.         .StripeElement--focus {
  543.             box-shadow: 0 1px 3px 0 #cfd7df;
  544.         }
  545.         .StripeElement--invalid {
  546.             border-color: #0A9B01;
  547.         }
  548.         .StripeElement--webkit-autofill {
  549.             background-color: #fefde5 !important;
  550.         }
  551.     </style>
  552.     <link rel=\"stylesheet\" href=\"//cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css\">
  553. </head>
  554. <body class=\"{% block bodyCssClasses %}page-has-left-panels {% endblock %}\">
  555. <!-- Preloader -->
  556. <div id=\"hellopreloader\">
  557.     <div class=\"preloader\">
  558.         <svg width=\"45\" height=\"45\" stroke=\"#fff\">
  559.             <g fill=\"none\" fill-rule=\"evenodd\" stroke-width=\"2\" transform=\"translate(1 1)\">
  560.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  561.                     <animate attributeName=\"r\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  562.                              values=\"6;22\"/>
  563.                     <animate attributeName=\"stroke-opacity\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  564.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  565.                     <animate attributeName=\"stroke-width\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  566.                              repeatCount=\"indefinite\" values=\"2;0\"/>
  567.                 </circle>
  568.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  569.                     <animate attributeName=\"r\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  570.                              values=\"6;22\"/>
  571.                     <animate attributeName=\"stroke-opacity\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\"
  572.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  573.                     <animate attributeName=\"stroke-width\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  574.                              values=\"2;0\"/>
  575.                 </circle>
  576.                 <circle cx=\"22\" cy=\"22\" r=\"8\">
  577.                     <animate attributeName=\"r\" begin=\"0s\" calcMode=\"linear\" dur=\"1.5s\" repeatCount=\"indefinite\"
  578.                              values=\"6;1;2;3;4;5;6\"/>
  579.                 </circle>
  580.             </g>
  581.         </svg>
  582.         <div class=\"text\">Loading ...</div>
  583.     </div>
  584. </div>
  585. <!-- ... end Preloader -->
  586. {% block body %}
  587.     {% if app.user %}
  588.         {% if is_granted('ROLE_ADMIN') or is_granted('ROLE_ORGANIZER') %}
  589.             {% embed 'back/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %}
  590.         {% else %}
  591.             {% embed 'front/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %}
  592.         {% endif %}
  593.     {% endif %}
  594.     {% embed 'front/layout/section/header.html.twig' %}{% endembed %}
  595.     {% block content %}{% endblock %}
  596. {% endblock %}
  597. </body>
  598. </html>
  599. ""front/layout/base.html.twig""/srv/www/bm_dev_new/templates/front/layout/base.html.twig");
  600.     }
  601. }
  602. /* front/layout/base.html.twig */
  603. class __TwigTemplate_c91cf7724bcc18e59a2a1c2bf185ac1d18d8eaacf7255e657fb013b53913548c___796017599 extends Template
  604. {
  605.     private $source;
  606.     private $macros = [];
  607.     public function __construct(Environment $env)
  608.     {
  609.         parent::__construct($env);
  610.         $this->source $this->getSourceContext();
  611.         $this->blocks = [
  612.         ];
  613.     }
  614.     protected function doGetParent(array $context)
  615.     {
  616.         // line 116
  617.         return "front/layout/section/fixed-sidebar-left.html.twig";
  618.     }
  619.     protected function doDisplay(array $context, array $blocks = [])
  620.     {
  621.         $macros $this->macros;
  622.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  623.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/layout/base.html.twig"));
  624.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  625.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/layout/base.html.twig"));
  626.         $this->parent $this->loadTemplate("front/layout/section/fixed-sidebar-left.html.twig""front/layout/base.html.twig"116);
  627.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  628.         
  629.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  630.         
  631.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  632.     }
  633.     public function getTemplateName()
  634.     {
  635.         return "front/layout/base.html.twig";
  636.     }
  637.     public function isTraitable()
  638.     {
  639.         return false;
  640.     }
  641.     public function getDebugInfo()
  642.     {
  643.         return array (  718 => 116,  530 => 114,  338 => 122,  335 => 121,  333 => 120,  330 => 119,  327 => 118,  324 => 117,  321 => 116,  318 => 115,  315 => 114,  312 => 113,  310 => 112,  307 => 111,  297 => 110,  278 => 77,  266 => 27,  260 => 26,  249 => 24,  244 => 23,  240 => 22,  233 => 19,  223 => 18,  210 => 16,  200 => 15,  181 => 5,  169 => 124,  167 => 110,  131 => 77,  82 => 30,  79 => 18,  77 => 15,  72 => 13,  68 => 12,  64 => 11,  55 => 5,  49 => 1,);
  644.     }
  645.     public function getSourceContext()
  646.     {
  647.         return new Source("<!DOCTYPE html>
  648. <html>
  649. <head>
  650.     <meta charset=\"UTF-8\">
  651.     <title>{% block title %}BikingMan{% endblock %}</title>
  652.     <!-- Required meta tags always come first -->
  653.     <meta charset=\"utf-8\">
  654.     <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
  655.     <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">
  656.     <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"{{ asset('build/images/apple-touch-icon.png') }}\">
  657.     <link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"{{ asset('build/images/favicon-32x32.png') }}\">
  658.     <link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"{{ asset('build/images/favicon-16x16.png') }}\">
  659.     {% block stylesheets %}
  660.         {{ encore_entry_link_tags('app') }}
  661.     {% endblock %}
  662.     {% block javascripts %}
  663.         {{ encore_entry_script_tags('app') }}
  664.         <script>
  665.             \$(document).ready(function () {
  666.                 {% for type, messages in app.flashes() %}
  667.                 {% for message in messages %}
  668.                 \$.SwalFlashAlert( \"{{ type }}\", \"{{ message }}\");
  669.                 {% endfor %}
  670.                 {% endfor %}
  671.             });
  672.         </script>
  673.     {% endblock %}
  674.     <!-- Google tag (gtag.js) -->
  675.     <script async src=\"https://www.googletagmanager.com/gtag/js?id=G-W30R85L0MT\"></script>
  676.     <script>
  677.         window.dataLayer = window.dataLayer || [];
  678.         function gtag() {
  679.             dataLayer.push(arguments);
  680.         }
  681.         gtag('js', new Date());
  682.         gtag('config', 'G-W30R85L0MT');
  683.     </script>
  684.     <script src=\"https://js.stripe.com/v3/\"></script>
  685.     <style>
  686.         /**
  687.          * The CSS shown here will not be introduced in the Quickstart guide, but shows
  688.          * how you can use CSS to style your Element's container.
  689.          */
  690.         .StripeElement {
  691.             box-sizing: border-box;
  692.             height: 40px;
  693.             width: 100%;
  694.             padding: 10px 12px;
  695.             border: 1px solid transparent;
  696.             border-radius: 4px;
  697.             background-color: white;
  698.             box-shadow: 0 1px 3px 0 #e6ebf1;
  699.             -webkit-transition: box-shadow 150ms ease;
  700.             transition: box-shadow 150ms ease;
  701.         }
  702.         .StripeElement--focus {
  703.             box-shadow: 0 1px 3px 0 #cfd7df;
  704.         }
  705.         .StripeElement--invalid {
  706.             border-color: #0A9B01;
  707.         }
  708.         .StripeElement--webkit-autofill {
  709.             background-color: #fefde5 !important;
  710.         }
  711.     </style>
  712.     <link rel=\"stylesheet\" href=\"//cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css\">
  713. </head>
  714. <body class=\"{% block bodyCssClasses %}page-has-left-panels {% endblock %}\">
  715. <!-- Preloader -->
  716. <div id=\"hellopreloader\">
  717.     <div class=\"preloader\">
  718.         <svg width=\"45\" height=\"45\" stroke=\"#fff\">
  719.             <g fill=\"none\" fill-rule=\"evenodd\" stroke-width=\"2\" transform=\"translate(1 1)\">
  720.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  721.                     <animate attributeName=\"r\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  722.                              values=\"6;22\"/>
  723.                     <animate attributeName=\"stroke-opacity\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  724.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  725.                     <animate attributeName=\"stroke-width\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  726.                              repeatCount=\"indefinite\" values=\"2;0\"/>
  727.                 </circle>
  728.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  729.                     <animate attributeName=\"r\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  730.                              values=\"6;22\"/>
  731.                     <animate attributeName=\"stroke-opacity\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\"
  732.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  733.                     <animate attributeName=\"stroke-width\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  734.                              values=\"2;0\"/>
  735.                 </circle>
  736.                 <circle cx=\"22\" cy=\"22\" r=\"8\">
  737.                     <animate attributeName=\"r\" begin=\"0s\" calcMode=\"linear\" dur=\"1.5s\" repeatCount=\"indefinite\"
  738.                              values=\"6;1;2;3;4;5;6\"/>
  739.                 </circle>
  740.             </g>
  741.         </svg>
  742.         <div class=\"text\">Loading ...</div>
  743.     </div>
  744. </div>
  745. <!-- ... end Preloader -->
  746. {% block body %}
  747.     {% if app.user %}
  748.         {% if is_granted('ROLE_ADMIN') or is_granted('ROLE_ORGANIZER') %}
  749.             {% embed 'back/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %}
  750.         {% else %}
  751.             {% embed 'front/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %}
  752.         {% endif %}
  753.     {% endif %}
  754.     {% embed 'front/layout/section/header.html.twig' %}{% endembed %}
  755.     {% block content %}{% endblock %}
  756. {% endblock %}
  757. </body>
  758. </html>
  759. ""front/layout/base.html.twig""/srv/www/bm_dev_new/templates/front/layout/base.html.twig");
  760.     }
  761. }
  762. /* front/layout/base.html.twig */
  763. class __TwigTemplate_c91cf7724bcc18e59a2a1c2bf185ac1d18d8eaacf7255e657fb013b53913548c___761819334 extends Template
  764. {
  765.     private $source;
  766.     private $macros = [];
  767.     public function __construct(Environment $env)
  768.     {
  769.         parent::__construct($env);
  770.         $this->source $this->getSourceContext();
  771.         $this->blocks = [
  772.         ];
  773.     }
  774.     protected function doGetParent(array $context)
  775.     {
  776.         // line 120
  777.         return "front/layout/section/header.html.twig";
  778.     }
  779.     protected function doDisplay(array $context, array $blocks = [])
  780.     {
  781.         $macros $this->macros;
  782.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  783.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/layout/base.html.twig"));
  784.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  785.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/layout/base.html.twig"));
  786.         $this->parent $this->loadTemplate("front/layout/section/header.html.twig""front/layout/base.html.twig"120);
  787.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  788.         
  789.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  790.         
  791.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  792.     }
  793.     public function getTemplateName()
  794.     {
  795.         return "front/layout/base.html.twig";
  796.     }
  797.     public function isTraitable()
  798.     {
  799.         return false;
  800.     }
  801.     public function getDebugInfo()
  802.     {
  803.         return array (  906 => 120,  718 => 116,  530 => 114,  338 => 122,  335 => 121,  333 => 120,  330 => 119,  327 => 118,  324 => 117,  321 => 116,  318 => 115,  315 => 114,  312 => 113,  310 => 112,  307 => 111,  297 => 110,  278 => 77,  266 => 27,  260 => 26,  249 => 24,  244 => 23,  240 => 22,  233 => 19,  223 => 18,  210 => 16,  200 => 15,  181 => 5,  169 => 124,  167 => 110,  131 => 77,  82 => 30,  79 => 18,  77 => 15,  72 => 13,  68 => 12,  64 => 11,  55 => 5,  49 => 1,);
  804.     }
  805.     public function getSourceContext()
  806.     {
  807.         return new Source("<!DOCTYPE html>
  808. <html>
  809. <head>
  810.     <meta charset=\"UTF-8\">
  811.     <title>{% block title %}BikingMan{% endblock %}</title>
  812.     <!-- Required meta tags always come first -->
  813.     <meta charset=\"utf-8\">
  814.     <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
  815.     <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">
  816.     <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"{{ asset('build/images/apple-touch-icon.png') }}\">
  817.     <link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"{{ asset('build/images/favicon-32x32.png') }}\">
  818.     <link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"{{ asset('build/images/favicon-16x16.png') }}\">
  819.     {% block stylesheets %}
  820.         {{ encore_entry_link_tags('app') }}
  821.     {% endblock %}
  822.     {% block javascripts %}
  823.         {{ encore_entry_script_tags('app') }}
  824.         <script>
  825.             \$(document).ready(function () {
  826.                 {% for type, messages in app.flashes() %}
  827.                 {% for message in messages %}
  828.                 \$.SwalFlashAlert( \"{{ type }}\", \"{{ message }}\");
  829.                 {% endfor %}
  830.                 {% endfor %}
  831.             });
  832.         </script>
  833.     {% endblock %}
  834.     <!-- Google tag (gtag.js) -->
  835.     <script async src=\"https://www.googletagmanager.com/gtag/js?id=G-W30R85L0MT\"></script>
  836.     <script>
  837.         window.dataLayer = window.dataLayer || [];
  838.         function gtag() {
  839.             dataLayer.push(arguments);
  840.         }
  841.         gtag('js', new Date());
  842.         gtag('config', 'G-W30R85L0MT');
  843.     </script>
  844.     <script src=\"https://js.stripe.com/v3/\"></script>
  845.     <style>
  846.         /**
  847.          * The CSS shown here will not be introduced in the Quickstart guide, but shows
  848.          * how you can use CSS to style your Element's container.
  849.          */
  850.         .StripeElement {
  851.             box-sizing: border-box;
  852.             height: 40px;
  853.             width: 100%;
  854.             padding: 10px 12px;
  855.             border: 1px solid transparent;
  856.             border-radius: 4px;
  857.             background-color: white;
  858.             box-shadow: 0 1px 3px 0 #e6ebf1;
  859.             -webkit-transition: box-shadow 150ms ease;
  860.             transition: box-shadow 150ms ease;
  861.         }
  862.         .StripeElement--focus {
  863.             box-shadow: 0 1px 3px 0 #cfd7df;
  864.         }
  865.         .StripeElement--invalid {
  866.             border-color: #0A9B01;
  867.         }
  868.         .StripeElement--webkit-autofill {
  869.             background-color: #fefde5 !important;
  870.         }
  871.     </style>
  872.     <link rel=\"stylesheet\" href=\"//cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css\">
  873. </head>
  874. <body class=\"{% block bodyCssClasses %}page-has-left-panels {% endblock %}\">
  875. <!-- Preloader -->
  876. <div id=\"hellopreloader\">
  877.     <div class=\"preloader\">
  878.         <svg width=\"45\" height=\"45\" stroke=\"#fff\">
  879.             <g fill=\"none\" fill-rule=\"evenodd\" stroke-width=\"2\" transform=\"translate(1 1)\">
  880.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  881.                     <animate attributeName=\"r\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  882.                              values=\"6;22\"/>
  883.                     <animate attributeName=\"stroke-opacity\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  884.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  885.                     <animate attributeName=\"stroke-width\" begin=\"1.5s\" calcMode=\"linear\" dur=\"3s\"
  886.                              repeatCount=\"indefinite\" values=\"2;0\"/>
  887.                 </circle>
  888.                 <circle cx=\"22\" cy=\"22\" r=\"6\" stroke=\"none\">
  889.                     <animate attributeName=\"r\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  890.                              values=\"6;22\"/>
  891.                     <animate attributeName=\"stroke-opacity\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\"
  892.                              repeatCount=\"indefinite\" values=\"1;0\"/>
  893.                     <animate attributeName=\"stroke-width\" begin=\"3s\" calcMode=\"linear\" dur=\"3s\" repeatCount=\"indefinite\"
  894.                              values=\"2;0\"/>
  895.                 </circle>
  896.                 <circle cx=\"22\" cy=\"22\" r=\"8\">
  897.                     <animate attributeName=\"r\" begin=\"0s\" calcMode=\"linear\" dur=\"1.5s\" repeatCount=\"indefinite\"
  898.                              values=\"6;1;2;3;4;5;6\"/>
  899.                 </circle>
  900.             </g>
  901.         </svg>
  902.         <div class=\"text\">Loading ...</div>
  903.     </div>
  904. </div>
  905. <!-- ... end Preloader -->
  906. {% block body %}
  907.     {% if app.user %}
  908.         {% if is_granted('ROLE_ADMIN') or is_granted('ROLE_ORGANIZER') %}
  909.             {% embed 'back/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %}
  910.         {% else %}
  911.             {% embed 'front/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %}
  912.         {% endif %}
  913.     {% endif %}
  914.     {% embed 'front/layout/section/header.html.twig' %}{% endembed %}
  915.     {% block content %}{% endblock %}
  916. {% endblock %}
  917. </body>
  918. </html>
  919. ""front/layout/base.html.twig""/srv/www/bm_dev_new/templates/front/layout/base.html.twig");
  920.     }
  921. }