<div class="col-lg-6 watch-landing-description">
{% if editmode %}
{{ pimcore_input("title", {
"placeholder": 'Cím',
"class": "article-edit-title"
}) }}
{{ pimcore_wysiwyg('model-description', {
'placeholder': 'Leírás',
'class': 'article-edit-box'
}) }}
{% else %}
{% set title = pimcore_input("title") %}
{% set description = pimcore_wysiwyg("model-description") %}
{% if title and title.getText() %}
<h1>{{ title.render() | raw }}</h1>
{% endif %}
{% if description and not description.isEmpty() %}
{{ description.render() | raw }}
{% endif %}
{% endif %}
</div>