templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
  7.     <title>{% block title %}Puush création site internet | développement d'application Poitiers{% endblock %}</title>
  8.     <link rel="canonical" href="https://puush.io" />
  9.     <meta name="description" content="Puush est une société spécialisée dans la création de sites web et d'applications à Poitiers. Nous sommes experts en développement web et mobile.">
  10.     <meta name="keywords" content="Puush, Poitiers, création de sites web, développement web, développement mobile, applications web, agence web, creation site internet, ">
  11.     <meta name="author" content="Puush">
  12.     <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
  13.     <meta property="og:locale" content="fr_FR" />
  14.     <meta property="og:type" content="website" />
  15.     <meta property="og:title" content="Création de site internet &amp; conseil stratégie digitale" />
  16.     <meta property="og:description" content="Création de site internet, création d'applications web, applications métier, intranet, applications mobiles, référencement, emarketing, emailing, réseaux sociaux" />
  17.     <meta property="og:url" content="https://puush.io/" />
  18.     <meta property="og:site_name" content="puush" />
  19.     <meta name="twitter:card" content="summary_large_image" />
  20.     <meta name="twitter:site" content="@puush" />
  21.     <!-- Add to homescreen for Chrome on Android -->
  22.     <meta name="mobile-web-app-capable" content="yes">
  23.     <link rel="icon" sizes="192x192" href="{{ asset ('images/android-desktop.png')}}">
  24.     <!-- Add to homescreen for Safari on iOS -->
  25.     <meta name="apple-mobile-web-app-capable" content="yes">
  26.     <meta name="apple-mobile-web-app-status-bar-style" content="black">
  27.     <meta name="apple-mobile-web-app-title" content="App">
  28.     <link rel="apple-touch-icon-precomposed" href="{{ asset ('images/android-desktop.png')}}">
  29.     <!-- Tile icon for Win8 (144x144 + tile color) -->
  30.     <meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
  31.     <meta name="msapplication-TileColor" content="#3372DF">
  32.     {#<link rel="shortcut icon" href="{{ asset ('images/android-desktop.png')}}">#}
  33.     {% block stylesheets %}
  34.         <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
  35.         {{ encore_entry_link_tags('app') }}
  36.     {% endblock %}
  37.     <link rel="icon" sizes="32x32" href="{{ asset ('images/android-desktop.png') }}">
  38.     {{ include('/pages/main_navbar.html.twig') }}
  39. </head>
  40. <body>
  41. {% block body %}
  42. {% endblock %}
  43. {% block javascripts %}
  44.         {{ encore_entry_script_tags('globalJs') }}
  45.         {{ encore_entry_script_tags('app') }}
  46. {% endblock %}
  47. </body>
  48. {#{% if not app.request.cookies.get('cookie_banner_displayed') %}#}
  49.     {#{{ render_esi(path('ch_cookie_consent.show')) }}#}
  50.     {#{{ render_esi(path('ch_cookie_consent.show_if_cookie_consent_not_set')) }}#}
  51. {{ render_esi(path('ch_cookie_consent.show_if_cookie_consent_not_set', { 'locale' : app.request.locale })) }}
  52. {#{% endif %}#}
  53. {{ include('/pages/main_footer.html.twig') }}
  54. {% include "@CHCookieConsent/cookie_consent_styling.html.twig" %}
  55. </html>