{% set customClasses = website.configuration.cssClasses is defined ? website.configuration.cssClasses : [] %}
{% if customClasses|length > 0 and form.customClass is defined %}
{{ "Classes personnalisées"|trans }}
{% for customClass in customClasses %}
{% if customClass.name %}
-
{{ customClass.name }}
{% if customClass.description %}
: {{ customClass.description|trans}}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{{ "Contenu"|trans }}
{% if form.i18ns is defined %}
{% include 'admin/core/form/i18ns.html.twig' with {'i18ns': form.i18ns, 'disableTitle': true} %}
{% endif %}
{{ "Identifiants"|trans }}
{% if form.customClass is defined %}
{{ form_row(form.customClass) }}
{% endif %}
{% if form.customId is defined %}
{{ form_row(form.customId) }}
{% endif %}
{{ "Autres"|trans }}
{% if form.hide is defined %}
{{ form_row(form.hide) }}
{% endif %}
{{ "Marges intérieures"|trans }}
{% if form.paddingTop is defined %}
{{ form_row(form.paddingTop) }}
{% endif %}
{% if form.paddingRight is defined %}
{{ form_row(form.paddingRight) }}
{% endif %}
{% if form.paddingBottom is defined %}
{{ form_row(form.paddingBottom) }}
{% endif %}
{% if form.paddingLeft is defined %}
{{ form_row(form.paddingLeft) }}
{% endif %}
{{ "Médias"|trans }}
{% if form.standardizeMedia is defined %}
{{ form_row(form.standardizeMedia) }}
{% endif %}
{% if form.backgroundFixed is defined %}
{{ form_row(form.backgroundFixed) }}
{% endif %}
{% if form.backgroundParallax is defined %}
{{ form_row(form.backgroundParallax) }}
{% endif %}