32 lines
832 B
HTML
32 lines
832 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>BoleTC - Inicio</title>
|
|
<link rel="stylesheet" href="../css/estilos.css">
|
|
<script src="../js/conciertos.js" defer></script>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>BoleTC</h1>
|
|
<nav>
|
|
<a href="agregar_evento.html">Agregar Evento</a>
|
|
<a href="editar_evento.html">Editar Evento</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="contenedor-principal">
|
|
<button class="flecha-izquierda">❮</button>
|
|
|
|
<div class="contenedor-conciertos" id="conciertos">
|
|
<!-- Aquí se cargarán los conciertos dinámicamente -->
|
|
</div>
|
|
|
|
<button class="flecha-derecha">❯</button>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|