{% extends 'layout/default.html.twig' %}
{% block contentBlock %}
<div class="staticPage">
<div class="container my-5 my-lg-5 my-md-5">
<div class="row">
<div class="col-lg-3">
<h4 class="font-weight-bold text-uppercase">{{ 'About.pages.title' | trans }}</h4>
{% include 'document/static_page/sidebar/sidebar.html.twig' %}
</div>
<div class="col-lg-9">
<div class="mb-3 mb-lg-3 mb-md-3">
<h1 class="font-italic font-weight-bold mb-0">
{{ pimcore_input('heading',{
"height": 150,
"placeholder": "Heading"
})
}}
</h1>
</div>
<p class="font-weight-light font-italic big">
{{ pimcore_input("subHeading", {
"placeholder": "Content...",
"class": "font-weight-light font-italic big"
})
}}
</p>
<div class="row" style="word-break: break-word;">
{% for i in pimcore_iterate_block(pimcore_block('contentblock', { class: 'w-100 d-flex justify-content-between' })) %}
<div class="{{ not editmode ? 'col-lg-4 col-md-4 col-sm-12 mt-3 mt-lg-3 mt-md-3' }}">
{{ pimcore_wysiwyg("content-" ~ i, {
"height": 600,
"placeholder": "Content"
})
}}
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
{% endblock %}