templates/bundles/AccesoBundle/base.html_1.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html charset=utf-8" />
  5.         <meta name="viewport" content="initial-scale=1.0" />
  6.         <title>{% block title %}CSL{% endblock %} - GestiĆ³n de Salud</title>
  7.         <!--[if lt IE 9]>
  8.             <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  9.         <![endif]-->
  10.         {% block stylesheets %}
  11.             <link href="{{ asset('css/screen.css') }}" type="text/css" rel="stylesheet" />
  12.             <link href="{{ asset('css/default.css') }}" type="text/css" rel="stylesheet" />
  13.             <link href="{{ asset('bootstrap/css/bootstrap.css') }}" type="text/css" rel="stylesheet" />
  14.             <link href="{{ asset('fontawesome-free/web-fonts-with-css/css/fontawesome-all.min.css') }}" type="text/css" rel="stylesheet" />
  15.         {% endblock %}
  16.         <link rel="shortcut icon" href="{{ asset('favicon.png') }}" />
  17.          <script src="{{ asset('js/jquery-1.7.1.min.js') }}"></script>
  18.     </head>
  19.     <body>
  20.          <div class="container-fluid" style="margin-top: 5px">
  21.   <div id="doc2">
  22.            
  23.       <div id="hd" style="margin-bottom: 12px">
  24.    
  25.                     {% block navigation %}
  26.     
  27.                
  28.                     {% endblock %}
  29.                     </div>
  30.          
  31.  
  32.                    <div id="bd">
  33.                 {% block body %}
  34. {% endblock %}
  35.                    </div>
  36.         
  37.                 <div id="ft">
  38.                 {% block footer %}
  39.                 {% endblock %}
  40.                 </div>
  41.         {% block javascripts %}{% endblock %}
  42.       </div>
  43.                     </div>
  44.     </body>
  45. </html>