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>
24 lines
785 B
HTML
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>
|