{% block content %}
{% if editmode %}
{{ include("includes/backend-kopf.html.twig") }}
<div id="content" style="padding: 20px; margin-top: 20px;">
<p class="hl">Embed Code:</p>
<span class="parentbox">
{{ pimcore_textarea('embed_code', {
'width': 900,
'height': 280,
'nl2br': false,
'placeholder': '<script src="..."></script>\n<script></script>\n<!-- or <iframe ...></iframe> -->'
}) }}
</span>
<p style="margin-top: 8px; font-size: 0.9rem; color: #666">
Paste scripts, iframes, widgets. On the live site this renders unescaped.
</p>
</div>
{{ include("includes/backend-fuss.html.twig") }}
{% else %}
{% set code = pimcore_textarea('embed_code').getData() %}
{% if code is not empty %}
{{ code|raw }}
{% endif %}
{% endif %}
{% endblock %}