{% extends "madga/studio/base.html" %} {% load i18n madga_studio_tags %} {% block breadcrumbs %}Site/Theme gallery{% endblock %} {% block content %}

Theme gallery

Themes registrados (incluyendo los instalados via pip). Click "Activar" para aplicar al site, o "Activar con paleta" para sobreescribir colores y fuentes con los que sugiere el theme.

{% for theme in themes %}
{% if site.theme == theme.key %}Activo{% endif %}
{{ theme.label }}
CTA
{{ theme.label }} {{ theme.key }}
{% if theme.description %}

{{ theme.description }}

{% endif %}
{% if theme.author %}por {{ theme.author }}{% endif %}
{% if site.theme == theme.key %} {% studio_icon "check" size=12 stroke=2.5 %} En uso {% else %}
{% csrf_token %}
{% if theme.accent_color or theme.heading_font %}
{% csrf_token %}
{% endif %} {% endif %}
{% empty %} {% studio_empty title="Sin themes" message="No hay themes registrados. Instala uno via pip o registra uno desde el código." %} {% endfor %}
{% endblock %}