Games in intermission now appear in their own section between Live and Scheduled. The section is hidden when no games are in intermission, matching the behavior of the other section headings. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
1.6 KiB
HTML
40 lines
1.6 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/icon-32x32.png">
|
|
<link rel="apple-touch-icon" href="/static/icon-180x180.png">
|
|
<link rel="stylesheet" type="text/css" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<span class="header-title">NHL Scoreboard</span>
|
|
</header>
|
|
<main>
|
|
<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/script.js"></script>
|
|
</body>
|
|
</html>
|