{% extends base_layout() %}
{% block content %}
{% if editmode %}
{% if document.getParent().getParent().getKey() == 'zeilen' %}
<style>
.alert-info {
--bs-alert-color: white;
--bs-alert-bg: #007ec3;
--bs-alert-border-color: var(--bs-info-border-subtle);
--bs-alert-link-color: var(--bs-info-text);
}
</style>
{% endif %}
{% if document.getParent().getParent().getKey() == 'surfen' %}
<style>
.alert-info {
--bs-alert-color: white;
--bs-alert-bg: #c30000;
--bs-alert-border-color: var(--bs-info-border-subtle);
--bs-alert-link-color: var(--bs-info-text);
}
</style>
{% endif %}
{% if document.getParent().getParent().getKey() == 'suppen' %}
<style>
.alert-info {
--bs-alert-color: white;
--bs-alert-bg: #9ad5dd;
--bs-alert-border-color: var(--bs-info-border-subtle);
--bs-alert-link-color: var(--bs-info-text);
}
</style>
{% endif %}
{% endif %}
<div class="container">
<div class="row">
<div class="col-12">
<h1>{{ pimcore_input('title', {'placeholder':'Headline'}) }}</h1>
{{ pimcore_wysiwyg('content_text', {'placeholder':'Place content here'}) }}
</div>
</div>
{% if editmode %}
<div class="row">
<div class="col-12">
<p class="advice">{{ 'tip: Door op het plusteken te klikken kun je kiezen welke inhoudelijke blok je kan toevoegen.'|trans({}, 'admin') }}</p>
</div>
</div>
{% endif %}
<div class="row">
<div class="col-12">
{{ include('includes/default-content.html.twig') }}
</div>
</div>
</div>
{% endblock %}