You are here

two_columns_img_left_text_right.html.twig in Layouter - WYSIWYG layout templates 8

<div style="overflow: hidden;">
  <div style="width: 49%; float: left;">
    <div>
      {{ image }}
    </div>
    {% if caption is not empty %}
      <p style="font-size: 0.8em;">
        {{ caption }}
      </p>
    {% endif %}
  </div>
  <div style="width: 49%; float: right;">
    <p>
      {{ text }}
    </p>
  </div>
</div>

File

templates/two_columns_img_left_text_right.html.twig
View source
  1. <div style="overflow: hidden;">
  2. <div style="width: 49%; float: left;">
  3. <div>
  4. {{ image }}
  5. </div>
  6. {% if caption is not empty %}
  7. <p style="font-size: 0.8em;">
  8. {{ caption }}
  9. </p>
  10. {% endif %}
  11. </div>
  12. <div style="width: 49%; float: right;">
  13. <p>
  14. {{ text }}
  15. </p>
  16. </div>
  17. </div>