You are here

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

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

File

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