{#
{% set content = pimcore_wysiwyg('content', {
"customConfig" : "/static/ckeditor/ckeditor_config.js"
}) %} #}
{# add autogenerated meta description #}
{#{% if document.getDescription() is empty %}#}
{# {% do pimcore_head_meta().setDescription(content.getData(), 160) %}#}
{#{% endif %}#}
<section class="area-wysiwyg {% if pimcore_checkbox('marginBottom').isChecked() %}mb-5{% endif %} {% if pimcore_checkbox('marginTop').isChecked() %}mt-5{% endif %}">
{% if editmode %}
{% set message = 'Wysiwyg' %}
{% set type = 'info' %}
{% include 'includes/basicBlocks/admin/message/tip.html.twig' with {'message': message, 'type' : type} %}
<div class="row">
<div class="col-12">
<div class="alert alert-info">
{{ pimcore_checkbox('marginBottom', {
'reload' : false
}) }}
{{ 'Marge onderaan'|trans({}, 'admin') }}
{{ pimcore_checkbox('marginTop', {
'reload' : false
}) }}
{{ 'Marge bovenaan'|trans({}, 'admin') }}
</div>
</div>
</div>
<div class="border border-black p-2">
{% endif %}
{{ pimcore_wysiwyg("content", {
"customConfig" : "/static/ckeditor/ckeditor_config.js"
}) }}
{% if editmode %}
</div>
{% endif %}
</section>