ProBundle/Resources/views/probundle/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <!-- Meta -->
  5.         <meta charset="UTF-8">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <meta name="author" content="UB Photographies">
  8.         <meta name="description" content="Photographie professionnelle, création de site web, UBPhotographies vous accompagne dans le développement de votre image. Photographie corporate, trombinoscope, packshot, reportage d'entreprise, photographie immobilière.">
  9.         <meta name="keywords" content="UB Photographies, photographe, agence web, création de site internet, site vitrine, photographie, UBPhotographies , reportage évènementiel, reportage entreprise, photographie corporate, storytelling, photo immobilière, packshot, Plaisance-du-Touch, Toulouse, Occitanie, Pau, Midi-pyrénées">
  10.         <link rel="shortcut icon" size="192x192" type='image/x-icon' href="{{ asset('studio_build/images/favicon/ub-pictogramme-noir.ico', 'studio_build') }}"/>
  11.         <link href="{{ asset('bundles/ekynacookieconsent/css/cookie-consent.css') }}" rel="stylesheet" type="text/css"/>
  12.         {% if app.environment == "prod" %}
  13.             {{ ekyna_cookie_consent_render() }}
  14.             {% if ekyna_cookie_consent_category_allowed('analytic') %}
  15.                 <!-- Google tag (gtag.js) -->
  16.                 <script async src="https://www.googletagmanager.com/gtag/js?id=G-JHBPEBGZYK"></script>
  17.                 <script>
  18.                     window.dataLayer = window.dataLayer || [];
  19. function gtag() {
  20. dataLayer.push(arguments);
  21. }
  22. gtag('js', new Date());
  23. gtag('config', 'G-JHBPEBGZYK');
  24.                 </script>
  25.             {% endif %}
  26.             {% else %}
  27.             <meta name="robots" content="noindex">
  28.         {% endif %}
  29.         <title>
  30.             {% block title %}
  31.                 UB Photographies - Réserver votre séance photo à Plaisance du touch.
  32.             {% endblock %}
  33.         </title>
  34.         {% block stylesheets  %}
  35.             {{ encore_entry_link_tags('app_studio', null, 'studio_build') }}
  36.             {{ encore_entry_link_tags('pro_global', null, 'pro_build') }}
  37.             {{ encore_entry_link_tags('pro_navbar', null, 'pro_build') }}
  38.             {{ encore_entry_link_tags('pro_cookie', null, 'pro_build') }}
  39.         {% endblock %}
  40.     </head>
  41.     <body class=" text-center text-white">
  42.         <header class="">
  43.             {% block header %}
  44.                 {% include('@probundle/probundle/navbar.html.twig') %}
  45.             {% endblock %}
  46.         </header>
  47.         <div class="content">
  48.             {% for label, messages in app.flashes %}
  49.                 {% for message in messages %}
  50.                     <div class="alert alert-{{ label }} alert-dismissible fade show alert-homepage" role="alert">
  51.                         {{ message }}
  52.                         <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  53.                     </div>
  54.                 {% endfor %}
  55.             {% endfor %}
  56.             {% block content %}{% endblock %}
  57.         </div>
  58.         {% include('@probundle/probundle/footer.html.twig') %}
  59.     </body>
  60.     {% block javascripts %}
  61.         {{ encore_entry_script_tags('parc_app', null, 'parc_build') }}
  62.         {{ encore_entry_script_tags('parc_navbar', null, 'parc_build') }}
  63.         {{ encore_entry_script_tags('fontawesome', null, 'parc_build') }}
  64.     {% endblock %}
  65. </html>