src/Flexy/FrontBundle/templates/announce/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.     
  9. header a{
  10.         color:white;
  11.     }
  12.     header a.active{
  13.         color:#ff5c5b;
  14.     }
  15. </style>
  16.     {% endblock %}
  17.     <body>
  18.     <!--[if lt IE 8]>
  19.         <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>
  20.     <![endif]-->
  21.        
  22.         {% include "@Flexy/FrontBundle/templates/announce/_header.html.twig" %}
  23.         {% block body %}
  24.         {% endblock %}
  25.         {% include "@Flexy/FrontBundle/templates/announce/_footer.html.twig" %}
  26.         {% block javascripts %}
  27.             {% include "@Flexy/FrontBundle/templates/_javascripts.html.twig" %}
  28.         {% endblock %}
  29.     </body>
  30. <!-- index30:23-->
  31. </html>