<div class="application-information-wrapper animate__animated animate__slower animate__fadeIn wow">
{% if editmode %}
<div class="container border border-main-purple ">
<div class="row">
<div class="col-lg-12">
<span class="font-italic font-weight-normal">{{ 'Upload background image' | trans }}</span>
{{ pimcore_image('application-information-background-image', {width: 300, height: 160}) }}
</div>
</div>
</div>
{% endif %}
{% set backgroundImage = pimcore_image('application-information-background-image').getThumbnail('application-information-background') %}
<div class="container application-information" style="background-image: url({{ backgroundImage }})">
<div class="application-information-wrapper-left-image" {{ editmode ? 'style="left:0;"' }}>
{% if not pimcore_image('application-information-wrapper-left-image').isEmpty() and not editmode %}
{{ pimcore_image('application-information-wrapper-left-image').getThumbnail('application-information-front-left')
.getHtml({alt: pimcore_image('application-information-wrapper-left-image').getAlt() }) | raw }}
{% else %}
{{ pimcore_image('application-information-wrapper-left-image', {width: 120, height: 210}) }}
{% endif %}
</div>
<div class="application-information-left">
{% if not pimcore_image('application-information-front-image').isEmpty() and not editmode %}
{{ pimcore_image('application-information-front-image').getThumbnail('application-information-front')
.getHtml({alt: pimcore_image('application-information-front-image').getAlt() }) | raw }}
{% else %}
{{ pimcore_image('application-information-front-image', {width: 320, height: 340}) }}
{% endif %}
</div>
<div class="application-information-content">
<div class="d-flex flex-column">
<div class="application-information-description animate__animated animate__slower animate__backInDown wow">
{{ pimcore_wysiwyg('application-information-description', {
"toolbarGroups": [
{
"name": 'WYSIWYG 1',
"groups": [ 'basicstyles', 'colors', 'links', 'styles' ]
}
],
"placeholder": 'Content...' | trans
}) }}
</div>
<div class="application-information-download-content text-center text-md-left animate__animated animate__slower animate__backInUp wow">
{{ pimcore_wysiwyg('application-information-download-content', {
"toolbarGroups": [
{
"name": 'WYSIWYG 1',
"groups": [ 'basicstyles', 'colors', 'links', 'styles' ]
}
],
"placeholder": 'Content...' | trans
}) }}
</div>
<div class="mt-2 text-center text-md-left animate__animated animate__slower animate__backInUp wow">
<div class="app-buttons app-buttons--hero">
{% include 'components/google-play-button.html.twig' %}
{% include 'components/app-store-button.html.twig' %}
</div>
</div>
</div>
</div>
</div>
</div>