templates/articles/blocks/show-simple-text-field.html.twig line 1

Open in your IDE?
  1. {% if content is defined and content is not empty and content|length > 0 %}
  2.     {% set class = '' %}
  3.     {% if classCSS is defined and classCSS is not empty %}
  4.         {% set class = classCSS %}
  5.     {% endif %}
  6.     <div class="mb-1em">
  7.         {% if title is defined and title is not empty and title|length > 0 %}
  8.             <div class="fw600{{class}}">{{title|raw}}</div>
  9.         {% endif %}
  10.         <div class="lh24 freetext">{{content|raw}}</div>
  11.     </div>
  12. {% endif %}