{% extends "base.html" %} {% block title %}Brand kits · LibreSignage{% endblock %} {% block content %}

Brand kits

Reuse locally hosted logos, fonts, and accessible colors across templates.

Templates

{{ 'Edit' if edit_kit else 'Create' }} brand kit

{% if edit_kit %}{% endif %}
{% for kit in kits %}

{{ kit.name }} {% if kit.is_default %}Default{% endif %} {% if kit.archived %}Archived{% endif %}

Primary + text Secondary

{{ 'Logo' if kit.logo_filename else 'No logo' }} · {{ 'Heading font' if kit.heading_font_filename else 'Default heading font' }} · {{ 'Body font' if kit.body_font_filename else 'Default body font' }}

{% if not kit.archived %}
Edit
{% endif %}
{% else %}

No brand kits yet.

{% endfor %}
{% endblock %}