84 lines
4.2 KiB
HTML
84 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>NHL Scoreboard</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="theme-color" content="#0f172a">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="apple-mobile-web-app-title" content="NHL Scores">
|
|
<link rel="manifest" href="/manifest.json">
|
|
<link rel="icon" type="image/png" href="{{ static_v('icon-32x32.png') }}">
|
|
<link rel="apple-touch-icon" href="{{ static_v('icon-180x180.png') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ static_v('styles.css') }}">
|
|
<script defer src="http://100.85.196.63:3000/script.js" data-website-id="d6bd9925-cb2d-4164-9685-bfb7642c41e4"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<span class="header-title">NHL Scoreboard</span>
|
|
<nav class="date-nav" aria-label="Date navigation">
|
|
<button id="date-prev" class="date-btn" aria-label="Previous day">←</button>
|
|
<span id="date-label" class="date-label"></span>
|
|
<button id="date-next" class="date-btn" aria-label="Next day">→</button>
|
|
</nav>
|
|
</header>
|
|
<section id="playoff-banner" class="playoff-banner hidden" aria-hidden="true">
|
|
<a class="banner-main" href="/bracket" aria-label="View the playoff bracket">
|
|
<svg class="banner-trophy" viewBox="0 0 32 40" aria-hidden="true">
|
|
<defs>
|
|
<linearGradient id="cup-gold" x1="0" x2="1" y1="0" y2="1">
|
|
<stop offset="0%" stop-color="#f5d76e"/>
|
|
<stop offset="60%" stop-color="#d4af37"/>
|
|
<stop offset="100%" stop-color="#8a6d1a"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<path fill="url(#cup-gold)" d="M6 2h20v4c0 5-2 9-5 11l-1 5h-8l-1-5C8 15 6 11 6 6V2zm4 20h12v3H10v-3zm-2 4h16v3H8v-3zm1 4h14v6H9v-6z"/>
|
|
<rect x="11" y="9" width="10" height="2" fill="#0a1628" opacity="0.35"/>
|
|
<rect x="11" y="13" width="10" height="1.5" fill="#0a1628" opacity="0.35"/>
|
|
</svg>
|
|
<div class="banner-text">
|
|
<div class="banner-title">
|
|
STANLEY CUP PLAYOFFS
|
|
<span class="banner-year"></span>
|
|
</div>
|
|
<div class="banner-meta">
|
|
<span class="meta-round"></span>
|
|
<span class="meta-day hidden"></span>
|
|
<span class="meta-series"></span>
|
|
<span class="meta-elim hidden"></span>
|
|
<span class="meta-game7 hidden"></span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</section>
|
|
<div id="stale-banner" class="stale-banner hidden">Connection lost — scores may be outdated</div>
|
|
<main>
|
|
<div id="empty-state" class="empty-state hidden">
|
|
<p class="empty-state-heading">No games scheduled today</p>
|
|
<p class="empty-state-sub">Check back tomorrow</p>
|
|
</div>
|
|
<section id="pinned-section" class="section pinned-section hidden">
|
|
<h2 class="section-heading section-heading-gold">Spotlight · Game 7</h2>
|
|
<div id="pinned-games-section" class="games-grid"></div>
|
|
</section>
|
|
<section id="live-section" class="section hidden">
|
|
<h2 class="section-heading">Live</h2>
|
|
<div id="live-games-section" class="games-grid"></div>
|
|
</section>
|
|
<section id="intermission-section" class="section hidden">
|
|
<h2 class="section-heading">Intermission</h2>
|
|
<div id="intermission-games-section" class="games-grid"></div>
|
|
</section>
|
|
<section id="pre-section" class="section hidden">
|
|
<h2 class="section-heading">Scheduled</h2>
|
|
<div id="pre-games-section" class="games-grid"></div>
|
|
</section>
|
|
<section id="final-section" class="section hidden">
|
|
<h2 class="section-heading">Final</h2>
|
|
<div id="final-games-section" class="games-grid"></div>
|
|
</section>
|
|
</main>
|
|
<script src="{{ static_v('script.js') }}"></script>
|
|
</body>
|
|
</html>
|