Fix
This commit is contained in:
139
frontend/partida-actual.html
Normal file
139
frontend/partida-actual.html
Normal file
@@ -0,0 +1,139 @@
|
||||
<!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="Vista interna de la partida actual de Comunidad Hispana en HLL Vietnam."
|
||||
/>
|
||||
<title>Partida actual - 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="./index.html">
|
||||
VOLVER INICIO
|
||||
</a>
|
||||
<p class="eyebrow">Partida en vivo</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="current-match-title">
|
||||
Partida actual
|
||||
</h1>
|
||||
<p class="hero__text historical-hero__text" id="current-match-summary">
|
||||
Cargando estado del servidor.
|
||||
</p>
|
||||
</div>
|
||||
<div class="hero__actions">
|
||||
<a class="secondary-button" id="current-match-history" href="./historico.html">
|
||||
Abrir historico
|
||||
</a>
|
||||
<a
|
||||
class="secondary-button"
|
||||
id="current-match-scoreboard"
|
||||
href="./index.html"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
hidden
|
||||
>
|
||||
Ver scoreboard publico
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<figure class="historical-map-hero current-match-map-hero" id="current-match-map-hero">
|
||||
<img
|
||||
class="historical-map-hero__image"
|
||||
id="current-match-map-image"
|
||||
src=""
|
||||
alt=""
|
||||
width="960"
|
||||
height="540"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
hidden
|
||||
/>
|
||||
<div class="current-match-map-placeholder" id="current-match-map-placeholder">
|
||||
<strong>Mapa en vivo</strong>
|
||||
<span>Esperando imagen disponible.</span>
|
||||
</div>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="content historical-content">
|
||||
<section class="panel historical-panel" aria-labelledby="current-match-panel-title">
|
||||
<div class="panel__shell">
|
||||
<div class="panel__header historical-panel__header">
|
||||
<div>
|
||||
<p class="eyebrow eyebrow--section">Estado en vivo</p>
|
||||
<h2 id="current-match-panel-title">Marcador en curso</h2>
|
||||
<p class="historical-panel__note" id="current-match-note">
|
||||
Leyendo el ultimo snapshot disponible.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="historical-state" id="current-match-state" aria-live="polite">
|
||||
Cargando partida actual...
|
||||
</p>
|
||||
<div class="historical-summary-grid" id="current-match-grid" hidden></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="panel historical-panel" aria-labelledby="current-match-feed-title">
|
||||
<div class="panel__shell">
|
||||
<div class="panel__header historical-panel__header">
|
||||
<div>
|
||||
<p class="eyebrow eyebrow--section">Combate</p>
|
||||
<h2 id="current-match-feed-title">Feed de combate</h2>
|
||||
<p class="historical-panel__note">
|
||||
Leyendo eventos recientes para esta partida.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="panel historical-panel" aria-labelledby="current-match-players-title">
|
||||
<div class="panel__shell">
|
||||
<div class="panel__header historical-panel__header">
|
||||
<div>
|
||||
<p class="eyebrow eyebrow--section">Jugadores</p>
|
||||
<h2 id="current-match-players-title">Estadisticas en vivo</h2>
|
||||
<div class="current-match-player-intro">
|
||||
<p class="historical-panel__note">
|
||||
Las estadisticas en vivo apareceran cuando haya datos suficientes.
|
||||
</p>
|
||||
<p class="current-match-player-count" id="current-match-player-count">
|
||||
Jugadores detectados: 0
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
<script src="./assets/js/config.js"></script>
|
||||
<script src="./assets/js/partida-actual.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user