{% if content.metadata.use_custom_code == "only" %}
{% if content.metadata.custom_html %}
{{ content.metadata.custom_html | safe }}
{% else %}
{{ content.body_html | safe }}
{% endif %}
{% elif content.metadata.use_custom_code == "both" %}
{{ content.body_html | safe }}
{% if content.metadata.custom_html %}
{{ content.metadata.custom_html | safe }}
{% endif %}
{% else %}
{{ content.body_html | safe }}
{% endif %}
{% if content.metadata.custom_js %}
{% endif %}
{% endblock %}