templates/base.html.twig line 1

  1. <!doctype html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <title>{% block title %}Nous diffusons vos cartes de visites | CréaCard{% endblock %}</title>
  7.         <link rel="icon" href="/favicon.ico">
  8.         {% block meta %}
  9.         <meta name="description" content="CréaCard diffuse jusqu’à 50 000 cartes par an dans les Pyrénées-Orientales">
  10.         <meta property="og:type" content="website">
  11.         <meta property="og:site_name" content="CréaCard">
  12.         <meta property="og:title" content="Nous diffusons vos cartes de visites">
  13.         <meta property="og:description" content="CréaCard diffuse jusqu’à 50 000 cartes par an dans les Pyrénées-Orientales">
  14.         <meta property="og:image" content="">
  15.         <meta property="og:image:width" content="64">
  16.         <meta property="og:image:height" content="64">
  17.         <meta property="og:url" content="https://dev.crea-card.com">
  18.         {% endblock %}
  19.         {% block stylesheets %}
  20.             {{ encore_entry_link_tags('app') }}
  21.         {% endblock %}
  22.     </head>
  23.     <body>
  24.         <header>
  25.             {% include '_partials/_header.html.twig' %}
  26.         </header>
  27.         <main>
  28.             {% block body %}{% endblock %}
  29.         </main>
  30.         <footer class="pt-5 pb-0 text-white">
  31.             {% include '_partials/_footer.html.twig' %}
  32.         </footer>
  33.         {% block javascripts %}
  34.             {{ encore_entry_script_tags('app') }}
  35.         {% endblock %}
  36.     </body>
  37. </html>