templates/articles-blocks/block-wrap.html.twig line 1

Open in your IDE?
  1. <div class="frame-article-wrap-container dflex fwwrap">
  2.     <div class="frame-article-wrap mb-2em">
  3.         <div class="frame-text-wrap-title lh40 fs36 fw400 mb-20px">{{ data.first_block_title }}</div>
  4.         <div class="frame-text-wrap-body lh24 fs16 fw400">{{ data.first_block_body | raw }}</div>
  5.     </div>
  6.     {% if data.additional_content is defined and data.additional_content is not empty %}
  7.         {% for text in data.additional_content %}
  8.             <div class="frame-article-wrap mb-2em">
  9.                 <div class="frame-text-wrap-title lh40 fs36 fw400 mb-20px">{{ text.wrap_block_title }}</div>
  10.                 {% if text.wrap_block_body is defined and text.wrap_block_body is not empty %}
  11.                     <div class="frame-text-wrap-body lh24 fs16 fw400">{{ text.wrap_block_body | raw }}</div>
  12.                 {% endif %}
  13.             </div>
  14.         {% endfor %}
  15.     {% endif %}
  16. </div>