<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>{% block title %}BikingMan{% endblock %}</title> <!-- Required meta tags always come first --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('build/images/apple-touch-icon.png') }}"> <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('build/images/favicon-32x32.png') }}"> <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('build/images/favicon-16x16.png') }}"> {% block stylesheets %} {{ encore_entry_link_tags('app') }} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('app') }} <script> $(document).ready(function () { {% for type, messages in app.flashes() %} {% for message in messages %} $.SwalFlashAlert( "{{ type }}", "{{ message }}"); {% endfor %} {% endfor %} }); </script> {% endblock %} <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-W30R85L0MT"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-W30R85L0MT'); </script> <script src="https://js.stripe.com/v3/"></script> <style> /** * The CSS shown here will not be introduced in the Quickstart guide, but shows * how you can use CSS to style your Element's container. */ .StripeElement { box-sizing: border-box; height: 40px; width: 100%; padding: 10px 12px; border: 1px solid transparent; border-radius: 4px; background-color: white; box-shadow: 0 1px 3px 0 #e6ebf1; -webkit-transition: box-shadow 150ms ease; transition: box-shadow 150ms ease; } .StripeElement--focus { box-shadow: 0 1px 3px 0 #cfd7df; } .StripeElement--invalid { border-color: #0A9B01; } .StripeElement--webkit-autofill { background-color: #fefde5 !important; } </style> <link rel="stylesheet" href="//cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css"></head><body class="{% block bodyCssClasses %}page-has-left-panels {% endblock %}"><!-- Preloader --><div id="hellopreloader"> <div class="preloader"> <svg width="45" height="45" stroke="#fff"> <g fill="none" fill-rule="evenodd" stroke-width="2" transform="translate(1 1)"> <circle cx="22" cy="22" r="6" stroke="none"> <animate attributeName="r" begin="1.5s" calcMode="linear" dur="3s" repeatCount="indefinite" values="6;22"/> <animate attributeName="stroke-opacity" begin="1.5s" calcMode="linear" dur="3s" repeatCount="indefinite" values="1;0"/> <animate attributeName="stroke-width" begin="1.5s" calcMode="linear" dur="3s" repeatCount="indefinite" values="2;0"/> </circle> <circle cx="22" cy="22" r="6" stroke="none"> <animate attributeName="r" begin="3s" calcMode="linear" dur="3s" repeatCount="indefinite" values="6;22"/> <animate attributeName="stroke-opacity" begin="3s" calcMode="linear" dur="3s" repeatCount="indefinite" values="1;0"/> <animate attributeName="stroke-width" begin="3s" calcMode="linear" dur="3s" repeatCount="indefinite" values="2;0"/> </circle> <circle cx="22" cy="22" r="8"> <animate attributeName="r" begin="0s" calcMode="linear" dur="1.5s" repeatCount="indefinite" values="6;1;2;3;4;5;6"/> </circle> </g> </svg> <div class="text">Loading ...</div> </div></div><!-- ... end Preloader -->{% block body %} {% if app.user %} {% if is_granted('ROLE_ADMIN') or is_granted('ROLE_ORGANIZER') %} {% embed 'back/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %} {% else %} {% embed 'front/layout/section/fixed-sidebar-left.html.twig' %}{% endembed %} {% endif %} {% endif %} {% embed 'front/layout/section/header.html.twig' %}{% endembed %} {% block content %}{% endblock %}{% endblock %}</body></html>