<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Cps-HR-RRHH{% endblock %}</title>
<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>">
{% block stylesheets %}
<link href="{{ asset('vendors/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ asset('build/css/jquery-ui-1.10.4.custom.css') }}" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
{% endblock %}
</head>
<body>
<nav style="position: fixed; top: 0; left: 0; right: 0; height: 60px;
background-color: #007b6d; z-index: 1030; border: none;">
<!-- Logo -->
<img src="/production/images/logo1.png"
style="height: 40px; position: absolute; top: 10px; left: 15px;">
<!-- Texto al lado del logo - POSICIÓN ABSOLUTA TAMBIÉN -->
<div style="position: absolute; top: 50%; left: 70px;
transform: translateY(-50%); color: white;
font-size: 12px; font-weight: bold;">
Caja Petrolera - Sistema Encuenta
</div>
</nav>
<div style="margin-top: 60px;"> <!-- Espacio para el navbar de 80px -->
{% block body %}{% endblock %}
</div>
{% block custom_stylesheets %}
<style>
body {
margin: 0;
padding: 0;
background-color: #f8f9fa;
}
/* Eliminar cualquier borde o outline de Bootstrap */
.navbar {
border: 0 !important;
border-radius: 0 !important;
margin-bottom: 0 !important;
}
/* Asegurar que no haya espacios */
html, body {
height: 100%;
overflow-x: hidden;
}
/* Para que los enlaces no tengan outline */
a, a:focus, a:hover {
outline: none;
text-decoration: none;
}
</style>
{% endblock %}
{% block javascripts %}
<!-- jQuery para Bootstrap -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
{% endblock %}
</body>
</html>