src/Flexy/FrontBundle/templates/deal/layout.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html class="no-js" lang="fr">
  3.     
  4. <!-- index28:48-->
  5.     {% block stylesheets %}
  6. {% include "@Flexy/FrontBundle/templates/_head.html.twig" %}
  7. <style>
  8. header a{
  9.         color:white;
  10.     }
  11.     header a.active{
  12.         color:#ff5c5b;
  13.     }
  14. </style>
  15.     {% endblock %}
  16.     <body>
  17.     <!--[if lt IE 8]>
  18.         <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>
  19.     <![endif]-->
  20.        
  21.         {% include "@Flexy/FrontBundle/templates/deal/_header.html.twig" %}
  22.         {% block body %}
  23.         {% endblock %}
  24.         {% include "@Flexy/FrontBundle/templates/booking/_footer.html.twig" %}
  25.         {% block javascripts %}
  26.             {% include "@Flexy/FrontBundle/templates/_javascripts.html.twig" %}
  27.         {% endblock %}
  28.     </body>
  29. <!-- index30:23-->
  30. </html>