Files
comunidadhll/frontend/historico-partida.html
2026-05-20 21:18:44 +02:00

116 lines
4.5 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Detalle interno de una partida historica registrada por HLL Vietnam."
/>
<title>Detalle de partida - HLL Vietnam</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
<link rel="stylesheet" href="./assets/css/historico.css" />
<link rel="stylesheet" href="./assets/css/historico-scoreboard-detail.css" />
</head>
<body data-backend-base-url="http://127.0.0.1:8000">
<div class="page-shell historical-shell">
<header class="hero historical-hero">
<div class="hero__overlay"></div>
<div class="hero__content historical-hero__content">
<div class="historical-hero__topline">
<a class="secondary-button secondary-button--ghost" href="./historico.html">
VOLVER HISTORICO
</a>
<p class="eyebrow">Detalle interno</p>
</div>
<div class="historical-hero__layout">
<div class="logo-frame historical-logo-frame">
<img
src="./assets/img/logo.png"
alt="Logo oficial de la comunidad HLL Vietnam"
class="logo-frame__image"
width="1024"
height="1044"
decoding="async"
/>
</div>
<div class="historical-hero__copy">
<div>
<h1 class="historical-hero__title" id="match-detail-title">
Partida registrada
</h1>
<p class="hero__text historical-hero__text" id="match-detail-summary">
Cargando datos disponibles del historico local.
</p>
</div>
</div>
<figure class="historical-map-hero" id="match-detail-map-hero" hidden>
<img
class="historical-map-hero__image"
id="match-detail-map-image"
src=""
alt=""
width="960"
height="540"
loading="eager"
decoding="async"
/>
</figure>
</div>
</div>
</header>
<main class="content historical-content">
<section class="panel historical-panel" aria-labelledby="match-detail-panel-title">
<div class="panel__shell">
<div class="panel__header historical-panel__header">
<div>
<p class="eyebrow eyebrow--section">Partida historica</p>
<h2 id="match-detail-panel-title">Marcador final</h2>
<p class="historical-panel__note" id="match-detail-note">
Leyendo el detalle interno de la partida.
</p>
</div>
</div>
<p class="historical-state" id="match-detail-state" aria-live="polite">
Cargando detalle...
</p>
<div class="historical-summary-grid" id="match-detail-grid" hidden></div>
<div class="historical-detail-section" id="match-detail-players-section" hidden>
<div class="historical-detail-section__header">
<div>
<p class="eyebrow eyebrow--section">Jugadores</p>
<h3>Registro de jugadores</h3>
</div>
<p class="historical-panel__note" id="match-detail-players-note">
Revisando si existen estadisticas por jugador.
</p>
</div>
<p class="historical-state" id="match-detail-players-state" hidden></p>
<div class="historical-table-shell" id="match-detail-players-table-shell" hidden>
<table class="historical-table historical-table--players">
<thead>
<tr>
<th>Jugador</th>
<th>Equipo</th>
<th>K</th>
<th>D</th>
<th>TK</th>
<th>K/D</th>
<th>KPM</th>
</tr>
</thead>
<tbody id="match-detail-players-body"></tbody>
</table>
</div>
</div>
<div class="historical-match-card__actions" id="match-detail-actions" hidden></div>
</div>
</section>
</main>
</div>
<script src="./assets/js/historico-partida.js"></script>
</body>
</html>