templates/base_publico.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>
  6.             {% block title %}Welcome!
  7.             {% endblock %}
  8.         </title>
  9.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
  10.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  11.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/fontawesome-free/css/all.min.css')}}">
  12.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')}}">
  13.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-responsive/css/responsive.bootstrap4.min.css')}}">
  14.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-buttons/css/buttons.bootstrap4.min.css')}}">        
  15.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/jquery-ui/jquery-ui.min.css')}}">        
  16.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  17.         {% block stylesheets %}
  18.             {{ encore_entry_link_tags('app') }}
  19.             <link rel="stylesheet" href="{{asset('adminLTE/css/adminlte.min.css')}}">
  20.         {% endblock %}
  21.         {% block javascripts %}
  22.             {{ encore_entry_script_tags('app') }}
  23.             <script src="{{asset('adminLTE/js/adminlte.min.js')}}"></script>
  24.             <script src="{{asset('adminLTE/plugins/jquery/jquery.min.js')}}"></script>
  25.             <script src="{{asset('adminLTE/plugins/jquery-ui/jquery-ui.min.js')}}"></script>
  26.             <!-- Bootstrap 4 -->
  27.             <script src="{{asset('adminLTE/plugins/bootstrap/js/bootstrap.bundle.min.js')}}"></script>                        
  28.             <script>
  29.                 $(function () {
  30.                     $(".date").datepicker({dateFormat: 'dd/mm/yy'});
  31.                 });
  32.                 function teste() {
  33.                     $(".pesquisa").each(function () {
  34.                         $(this).val('');
  35.                     });
  36.                 }
  37.                 function visualizaTr(id){
  38.                     if(document.getElementById(id).style.display == 'none'){                    
  39.                         $("#"+id).show();
  40.                     }else{
  41.                         $("#"+id).hide();
  42.                     }
  43.                 }
  44.                 
  45.                 function immpressao(url) {
  46.                     window.open(url)
  47.                 }
  48.             </script>                        
  49.         {% endblock %}
  50.     </head>
  51.     <style>
  52.         .nav-link {
  53.             padding: 3px;
  54.         }
  55.         .content-header {
  56.             padding:0px;
  57.             padding-top: 10px;
  58.         }
  59.         .btn-pesquisa button{
  60.             margin-top:32px;
  61.             border-radius: 0px;
  62.         }
  63.         .btn-pesquisa a{
  64.             border-radius: 0px;
  65.             margin-top:32px;
  66.         }
  67.         table thead th{
  68.             background-color: #52796f;
  69.             color: #cad2c5;
  70.             font-weight: 400;
  71.         }
  72.         body{
  73.             color: #344e41;
  74.         }
  75.         .group-btn a{
  76.             width: 60px
  77.         }
  78.         h2{
  79.             font-size:35px;
  80.             color:#344e41;
  81.             font-weight:900
  82.         }
  83.         h1{
  84.             font-size:35px;
  85.             color:#02903e;
  86.             font-weight:900
  87.         }
  88.         .link{
  89.             cursor: pointer;  
  90.         }
  91.     </style>
  92.     <body>
  93.         <div class="content-fluid ">
  94.             {% block body %}{% endblock %}
  95.             <footer class="main-footer">
  96.                 <div class="float-right d-none d-sm-block">
  97.                     <b>Version</b> 1.0
  98.                 </div>
  99.                 <strong>&nbsp;</strong>
  100.             </footer>
  101.         </div>
  102.     </body>
  103. </html>