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>
15 lines
421 B
HTML
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>
|