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

15 lines
421 B
HTML

<div class="lcars-panel lcars-panel-{{ border_color|default:"primary" }}">
{% if title %}
<div class="lcars-panel-header">
<div class="lcars-panel-header-pill"></div>
<span class="lcars-panel-title">{{ title }}</span>
<div class="lcars-panel-header-bar"></div>
</div>
{% endif %}
<div class="lcars-panel-body">
{% if content %}
{{ content|safe }}
{% endif %}
</div>
</div>