src/Flexy/FrontBundle/Themes/IlaveU/templates/layout.html.twig line 1

  1. <!doctype html>
  2. <html class="no-js" lang="fr">
  3.     
  4. <!-- index28:48-->
  5.   <head>
  6.     {% block metas %}
  7.     {{front.renderSeo|join|raw}}
  8.     {% endblock %}
  9.     
  10.     <link rel="shortcut icon" href="{{asset("themes/ilaveu/images/favicon.png")}}" />
  11.     <meta name="format-detection" content="telephone=no" />
  12.     
  13.     <meta
  14.       name="viewport"
  15.       content="width=device-width,initial-scale=1,shrink-to-fit=no,maximum-scale=1"
  16.     />
  17.     {% block stylesheets %}
  18. {% include "@Flexy/FrontBundle/Themes/IlaveU/templates/_head.html.twig" %}
  19.     {% endblock %}
  20.       </head>
  21.     <body>
  22.     <!--[if lt IE 8]>
  23.         <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
  24.     <![endif]-->
  25.         {% if app.request.attributes.get("_route") != "single_category_product" %}
  26.        
  27.         {% endif %}
  28.          {{ render(path('front_header')) }}
  29.         
  30.         <div style="min-height:700px;" >
  31.         <div class="animate__animated animate__fadeIn" data-turbo-cache="false">
  32.         {% block body %}
  33.         {% endblock %}
  34.         </div>
  35.         </div>
  36.         
  37.         {{ render(path('front_footer')) }}
  38.         {% block javascripts %}
  39.             {% include "@Flexy/FrontBundle/Themes/IlaveU/templates/_javascripts.html.twig" %}
  40.             
  41.         {% endblock %}
  42.     </body>
  43. <!-- index30:23-->
  44. </html>