Full LCARS library-computer interface for a sci-fi podcast/media outfit. Codeless .bnp. Re-skins every mandatory builtin inside LCARS framing and ships the full Wave A surface. - 49 mandatory template overrides (chrome, marketing, primitives, commerce, blog family, auth, page-suggestions), field-faithful re-skins of the frozen builtin defaults; identity carried by the lcars-* class system. - 8 page templates (default+sidebar rail, full-width, full-display, landing, article, blog-index, contact, auth) with elbow-frame chrome. - 4 persona blocks: episode_console, crew_roster, stardate_log, transmission_status. Legacy lcars_header/sidebar/panel removed (now overrides + page chrome). - 5 dual-mode presets (canonical black + daylight-ops cream), all 19 tokens. - Bundled Antonio + Share Tech Mono (OFL); email-safe LCARS wrapper. - Seed "Subspace Signal": home, about, 3 episodes+articles, contact (hail_signals table + row_inserted email-admins workflow), login. - GO BIG motion: dependency-free canvas panel-sweep on the hero (lazy-init, reduced-motion static frame, no-JS fallback). Build + check-safety green. Visual UNVERIFIED until Wave B. Known frozen-cms limits (contract §11 auth/404 non-dispatch, §12 provider-backed empty lists) authored faithfully. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
1.1 KiB
Plaintext
11 lines
1.1 KiB
Plaintext
<section class="lcars-section-tight {{ class }}" data-block="lcars:transmission_status"><div class="lcars-well">
|
|
{% if eyebrow %}<p class="lcars-eyebrow">{{ eyebrow }}</p>{% endif %}
|
|
{% if heading %}<h2 class="lcars-heading lcars-heading-3" style="margin-bottom:1.25rem;">{{ heading }}</h2>{% endif %}
|
|
{% if systems %}<div class="lcars-grid lcars-grid-2">{% for s in systems %}
|
|
<div class="lcars-panel" style="padding:0.875rem 1.25rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;">
|
|
<div style="min-width:0;">{% if s.label %}<div class="lcars-label">{{ s.label }}</div>{% endif %}{% if s.detail %}<div class="lcars-readout" style="font-size:0.75rem;margin-top:0.25rem;">{{ s.detail }}</div>{% endif %}</div>
|
|
{% if s.status == "alert" %}<span class="lcars-status lcars-status-alert">Alert</span>{% elif s.status == "standby" %}<span class="lcars-status lcars-status-standby">Standby</span>{% elif s.status == "offline" %}<span class="lcars-status lcars-status-offline">Offline</span>{% else %}<span class="lcars-status lcars-status-online">Online</span>{% endif %}
|
|
</div>
|
|
{% endfor %}</div>{% endif %}
|
|
</div></section>
|