text.html.twig 312 B

123456789101112131415161718
  1. {% set grid_size = theme_var('grid-size') %}
  2. {% set image = page.media.images|first %}
  3. <section class="news">
  4. <h3>{{ header.title }}</h3>
  5. <div class="txt">
  6. {{ content }}
  7. </div>
  8. {% if image %}
  9. <div class="media">
  10. {{ image.html }}
  11. </div>
  12. {% endif %}
  13. </section>