Skip to content

Instantly share code, notes, and snippets.

@rndmcnlly
Created January 20, 2026 00:03
Show Gist options
  • Select an option

  • Save rndmcnlly/9befabce022ff350effe877116ad3d14 to your computer and use it in GitHub Desktop.

Select an option

Save rndmcnlly/9befabce022ff350effe877116ad3d14 to your computer and use it in GitHub Desktop.
Testing HTML deployment workflow with Gisthost.
<!-- Vibe-coded with Gambit v1.2 (https://bayleaf.chat/?model=gambit) -->
<!-- Q: Does the publish flow work? -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body { margin: 0; height: 100vh; display: grid; place-items: center;
background: #1a1a2e; color: #eee; font-family: system-ui;
cursor: pointer; user-select: none; }
h1 { font-size: 3rem; transition: transform 0.2s; }
p { color: #888; }
.started h1 { transform: scale(1.2); }
.started p { visibility: hidden; }
</style>
</head>
<body>
<div><h1>My Cool Game</h1><p>click to begin</p></div>
<script>
document.body.onclick = () => document.body.classList.add('started');
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment