{% if title or text or url or image or subtitle or subtext %}
<section class="m_image" m-pack="basic">

  {% include 'm_components/widgets/headline.twig' with {title: title, text: text} only %}

  <article class="m_image__block">
    <div class="m_image__image  ">
      {% include 'm_components/widgets/picture.twig' with {image: image, title: subtitle} only %}
    </div>

    {% if subtitle or subtext %}
      <div class="m_image__content">
        {% if subtitle %}<h2 class="h3">{{subtitle|raw}}</h2>{% endif %}
        <div class="m_content"> {{ fn.apply_filters('the_content', fn.html_entity_decode(subtext) )|raw }}</div>
      </div>
    {% endif %}
  </article>

</section>
{% endif %}
