templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="es">
  3.     <head>
  4.         <meta charset="UTF-8" />
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <meta name="description" content="">
  7.         <meta name="author" content="">
  8.         <title>{% block titulo %}Tecnomecanica{% endblock %}</title>
  9.         {% block css %}
  10.         <link href="{{ asset('taller/css/bootstrap.css') }}" type="text/css" rel="stylesheet">
  11.         <link href="{{ asset('taller/css/toastr.min.css') }}" type="text/css" rel="stylesheet"/>  
  12.         {% endblock %}
  13.   <link rel="shortcut icon" href="{{ asset('taller/img/favicon.jpg') }}">
  14.     </head>
  15.     <body>
  16.         {% block nav %}
  17.         {% endblock %}
  18.         {% block javascript %}
  19.         <script type="text/javascript" src="{{ asset('taller/js/jquery.js') }}"></script>
  20.         <script type="text/javascript" src="{{ asset('taller/js/bootstrap.js') }}"></script>
  21.             
  22.         <script>
  23.             //abre el submenu de facturacion si la ruta corresponde
  24.             var ruta=window.location.pathname;
  25.             var regex=/^\/([a-z]|[A-Z])+\//g;
  26.             var e=regex.exec(ruta);
  27.             if(e!=null && e[0]==="/facturas/" )
  28.                 $('#menuFacturacion').collapse("show");
  29.             $("div.modal-body  div.tab-pane").css("overflow-y","auto");
  30.             $("ui-datepicker-div").css("z-index",999);
  31.             $("div.modal-body  div.tab-pane").css("max-height",$(window).height()*0.7);
  32.             $(window).on('resize', function(){
  33.                     $("div.modal-body div.tab-pane").css("max-height",$(window).height()*0.7);
  34.             });
  35.             
  36.         </script>
  37.     {% endblock %}
  38.     </body>
  39. </html>