@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
39 lines (38 loc) • 1.51 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 – Story Not Found</title>
<style>
body { font-family: sans-serif; text-align: center; padding: 3em; background: #f8f9fa; }
.container { max-width: 600px; margin: 2em auto; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px #0001; padding: 2em; }
h1 { color: #bf1650; }
ul { text-align: left; margin: 1em auto; display: inline-block; }
.small { color: #888; margin-top: 2em; font-size: 0.9em; }
</style>
<script>
// GitHub Pages 404 redirect for Storybook
// If JS is enabled, redirect to root with original path as hash
(function() {
var path = window.location.pathname;
if (path !== '/' && !path.startsWith('/index.html')) {
var hash = '#'+path.replace(/^\//, '');
window.location.replace('/'+hash);
}
})();
</script>
</head>
<body>
<div class="container">
<h1>404 – Story Not Found</h1>
<p>The page you are looking for does not exist in this Storybook instance.</p>
<p>Try using the sidebar to find available stories, or <a href="/">return to the main page</a>.</p>
<div class="small">
If you believe this is an error, check the story name or contact the maintainers.<br />
<br />
<strong>GitHub Pages Notice:</strong> This page auto-redirects to the Storybook root for unknown routes.
</div>
</div>
</body>
</html>