templates/areas/watch-landing/_text.html.twig line 1

Open in your IDE?
  1. <div class="col-lg-6 watch-landing-description">
  2.     {% if editmode %}
  3.         {{ pimcore_input("title", {
  4.             "placeholder": 'Cím',
  5.             "class": "article-edit-title"
  6.         }) }}
  7.         {{ pimcore_wysiwyg('model-description', {
  8.             'placeholder': 'Leírás',
  9.             'class': 'article-edit-box'
  10.         }) }}
  11.     {% else %}
  12.         {% set title =  pimcore_input("title") %}
  13.         {% set description = pimcore_wysiwyg("model-description") %}
  14.         {% if title and title.getText() %}
  15.             <h1>{{ title.render() | raw }}</h1>
  16.         {% endif %}
  17.         {% if description and not description.isEmpty() %}
  18.             {{ description.render() | raw }}
  19.         {% endif %}
  20.     {% endif %}
  21. </div>