feat: add internal match detail links
Add internal match detail links for recent matches without safe external URLs while preserving external links when available.
This commit is contained in:
74
frontend/historico-partida.html
Normal file
74
frontend/historico-partida.html
Normal file
@@ -0,0 +1,74 @@
|
||||
<!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" />
|
||||
</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>
|
||||
</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">Datos disponibles</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-match-card__actions" id="match-detail-actions" hidden></div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script src="./assets/js/historico-partida.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user