templates/areas/newsletter/view.html.twig line 1

Open in your IDE?
  1. <div class="container reportProblem newsletter-areabrick" id="report-problem">
  2.     <div class="row pb-5">
  3.         <div class="col-12 col-md-9 offset-md-3 col-lg-6 offset-lg-0 col-xl-5 offset-xl-1 animate__animated animate__fadeInLeft wow">
  4.             <div class="reportProblem__title">
  5.                 {{ pimcore_wysiwyg("reportProblemTitle", {
  6.                     "toolbarGroups": [
  7.                         {
  8.                             "name": "WYSIWYG 1",
  9.                             "groups": [ "basicstyles" ],
  10.                         }
  11.                     ],
  12.                     "height": 30,
  13.                 }) }}
  14.             </div>
  15.             {% if not pimcore_wysiwyg("reportProblemSubtitle").isEmpty() and not editmode %}
  16.                 <div class="reportProblem__subTitle">
  17.                     {{ pimcore_wysiwyg("reportProblemSubtitle", {
  18.                         "toolbarGroups": [
  19.                             {
  20.                                 "name": "WYSIWYG 1",
  21.                                 "groups": [ 'basicstyles', 'colors', 'links', 'styles' ],
  22.                             }
  23.                         ],
  24.                         "height": 30,
  25.                     }) }}
  26.                 </div>
  27.             {% else %}
  28.                 <div class="reportProblem__subTitle">
  29.                     {{ pimcore_wysiwyg("reportProblemSubtitle", {
  30.                         "toolbarGroups": [
  31.                             {
  32.                                 "name": "WYSIWYG 1",
  33.                                 "groups": [ 'basicstyles', 'colors', 'links', 'styles' ],
  34.                             }
  35.                         ],
  36.                         "height": 30,
  37.                     }) }}
  38.                 </div>
  39.             {% endif %}
  40.             <div class="reportProblem__text">
  41.                 {{ pimcore_wysiwyg("reportProblemText", {
  42.                     "toolbarGroups": [
  43.                         {
  44.                             "name": "WYSIWYG 1",
  45.                             "groups": [ "basicstyles" ],
  46.                         }
  47.                     ],
  48.                     "height": 280,
  49.                 }) }}
  50.             </div>
  51.         </div>
  52.         <div class="col-12 col-md-9 offset-md-3 col-lg-6 offset-lg-0 col-xl-5 offset-xl-0 animate__animated animate__fadeInRight wow">
  53.             {% if document is defined and document and not isMobile|default() %}
  54.                 {% if document.getProperty('newsletterForm') %}
  55.                     {{ pimcore_inc(document.getProperty('newsletterForm').getRealFullpath(), { 'fixedVersion': true }) }}
  56.                 {% endif %}
  57.             {% endif %}
  58.         </div>
  59.     </div>
  60. </div>