Files
JoshHeaps.Net/JoshHeaps.Net/Pages/_Layout.cshtml
T
Josh-HeapsandClaude Opus 4.8 6402ef268c Rework the chess page into a chess.com-style layout
Board with player bars and captured trays on the left, a game panel with
move list, status, and action buttons on the right. The page is locked to
the viewport (no scrolling); on phones the panel collapses into a slide-up
menu reachable from a slim status bar. Cache-busts the chess scripts too.

Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
2026-06-10 16:58:35 -06:00

28 lines
605 B
Plaintext

@{
Layout = null;
ViewData["cssVersion"] = "1.0.7"; // <--- change this once to bust cache
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"]</title>
@RenderSection("Styles", required: false)
@RenderSection("Scripts", required: false)
</head>
<body>
<header>
<!-- optional header markup -->
</header>
<main role="main">
@RenderBody()
</main>
<footer>
<!-- optional footer markup -->
</footer>
</body>
</html>