<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
{% block title %}Welcome!
{% endblock %}
</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
<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>">
<link rel="stylesheet" href="{{asset('adminLTE/plugins/fontawesome-free/css/all.min.css')}}">
<link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')}}">
<link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-responsive/css/responsive.bootstrap4.min.css')}}">
<link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-buttons/css/buttons.bootstrap4.min.css')}}">
<link rel="stylesheet" href="{{asset('adminLTE/plugins/jquery-ui/jquery-ui.min.css')}}">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
<link rel="stylesheet" href="{{asset('adminLTE/css/adminlte.min.css')}}">
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
<script src="{{asset('adminLTE/js/adminlte.min.js')}}"></script>
<script src="{{asset('adminLTE/plugins/jquery/jquery.min.js')}}"></script>
<script src="{{asset('adminLTE/plugins/jquery-ui/jquery-ui.min.js')}}"></script>
<!-- Bootstrap 4 -->
<script src="{{asset('adminLTE/plugins/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
<script>
$(function () {
$(".date").datepicker({dateFormat: 'dd/mm/yy'});
});
function teste() {
$(".pesquisa").each(function () {
$(this).val('');
});
}
function visualizaTr(id){
if(document.getElementById(id).style.display == 'none'){
$("#"+id).show();
}else{
$("#"+id).hide();
}
}
function immpressao(url) {
window.open(url)
}
</script>
{% endblock %}
</head>
<style>
.nav-link {
padding: 3px;
}
.content-header {
padding:0px;
padding-top: 10px;
}
.btn-pesquisa button{
margin-top:32px;
border-radius: 0px;
}
.btn-pesquisa a{
border-radius: 0px;
margin-top:32px;
}
table thead th{
background-color: #52796f;
color: #cad2c5;
font-weight: 400;
}
body{
color: #344e41;
}
.group-btn a{
width: 60px
}
h2{
font-size:35px;
color:#344e41;
font-weight:900
}
h1{
font-size:35px;
color:#02903e;
font-weight:900
}
.link{
cursor: pointer;
}
</style>
<body>
<div class="content-fluid ">
{% block body %}{% endblock %}
<footer class="main-footer">
<div class="float-right d-none d-sm-block">
<b>Version</b> 1.0
</div>
<strong> </strong>
</footer>
</div>
</body>
</html>