Alex Dunmow e992d8247d feat: LCARS theme plugin — Star Trek computer interface
First-class pongo2 theme with 4 color presets (Federation, Red Alert,
Sickbay, Engineering), 3 custom blocks (header, sidebar, panel),
2 page templates, heading/text overrides, email wrapper, bundled
Antonio font, and full LCARS CSS with elbow brackets, pill buttons,
and rounded bars.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-06-02 23:11:11 +08:00

24 lines
785 B
HTML

<header class="lcars-header">
<div class="lcars-header-bar">
<div class="lcars-header-pill lcars-bg-primary"></div>
<div class="lcars-header-title-area">
<h1 class="lcars-title">{{ title }}</h1>
{% if subtitle %}
<span class="lcars-subtitle">{{ subtitle }}</span>
{% endif %}
</div>
<div class="lcars-header-indicators">
{% if stardate %}
<span class="lcars-stardate">SD {{ stardate }}</span>
{% endif %}
<span class="lcars-status lcars-status-{{ status|default:"online" }}">
{{ status|default:"online"|upper }}
</span>
</div>
<div class="lcars-header-pill lcars-bg-secondary"></div>
</div>
{% if ctx.isEditor %}
<div class="lcars-editor-badge">EDIT MODE</div>
{% endif %}
</header>