Files
dotfiles/python/gems/templates/home.html
T
Richie add7a6a848
treefmt / nix fmt (pull_request) Successful in 6s
test ebook search / test-ebook-search (pull_request) Successful in 39s
pytest / pytest (pull_request) Successful in 40s
build_systems / build-brain (pull_request) Successful in 1m0s
build_systems / build-bob (pull_request) Successful in 1m2s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m33s
build_systems / build-jeeves (pull_request) Successful in 2m25s
test ebook search / test-ebook-search (push) Successful in 35s
build_systems / build-brain (push) Successful in 37s
build_systems / build-bob (push) Successful in 37s
build_systems / build-jeeves (push) Successful in 2m17s
treefmt / nix fmt (push) Successful in 5s
pytest / pytest (push) Successful in 29s
build_systems / build-rhapsody-in-green (push) Successful in 49s
feat(gems): add multiplayer gem game with custom content packs
- implement FastAPI and HTMX lobby and game interfaces
- support up to four human and AI-controlled players
- add configurable rules, victory conditions, and expansion modules
- support validated JSON cards, patrons, objectives, and outposts
2026-07-22 20:47:03 -04:00

23 lines
1.0 KiB
HTML

{% extends "base.html" %}
{% block content %}
<section class="hero">
<p class="eyebrow">A private strategy table</p>
<h1>Build an engine.<br>Race for prestige.</h1>
<p class="lede">Bring your own content pack, invite up to three friends or bots, and shape the rules before the first turn.</p>
{% if error %}<p class="alert" role="alert">{{ error }}</p>{% endif %}
<div class="home-grid">
<form class="panel" method="post" action="/rooms">
<h2>Create a table</h2>
<label>Display name<input name="name" maxlength="32" value="{{ display_name }}" required autocomplete="nickname"></label>
<button class="primary">Create room</button>
</form>
<form class="panel" method="post" action="/join">
<h2>Join a table</h2>
<label>Invite code<input name="code" minlength="8" maxlength="8" required autocapitalize="characters"></label>
<button>Continue</button>
</form>
</div>
<p class="fine-print">No cards, artwork, or playable content are bundled with Gems.</p>
</section>
{% endblock %}