55 lines
2.4 KiB
HTML
55 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
<script src="https://unpkg.com/gijgo@1.9.14/js/gijgo.min.js" type="text/javascript"></script>
|
|
<link href="https://unpkg.com/gijgo@1.9.14/css/gijgo.min.css" rel="stylesheet" type="text/css" />
|
|
<link rel="icon" type="image/x-icon" href="https://aduanasoft.com/wp-content/uploads/2019/01/cropped-aslogo-1-32x32.png" sizes="32x32">
|
|
<link rel="icon" href="https://aduanasoft.com/wp-content/uploads/2019/01/cropped-aslogo-1-32x32.png" alt="favicon.ico">
|
|
<title>
|
|
{% block title %}{% endblock title %}
|
|
</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container-fluid">
|
|
{% include 'sidebar.html' %}
|
|
<h1>{% block titlePage %}{% endblock titlePage %}</h1>
|
|
{% include 'partials/messages.html' %}
|
|
{% block content %}{% endblock content %}
|
|
|
|
{% include 'paginator.html' %}
|
|
</div>
|
|
|
|
<!-- Optional JavaScript -->
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.3/dist/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
<script>
|
|
|
|
|
|
window.addEventListener('load', (event) => {
|
|
setTimeout(()=>{
|
|
//console.log('page is fully loaded');
|
|
let ale = document.getElementsByClassName("alert")
|
|
if(ale.length> 0 )
|
|
{
|
|
$(ale).alert('close')
|
|
$(ale).alert('dispose')
|
|
}
|
|
},5000)
|
|
|
|
});
|
|
</script>
|
|
{% block scripts %}
|
|
|
|
{% endblock scripts %}
|
|
</body>
|
|
</html> |