{% if title or text or subtitle or suptitle %}
<div class="m_headline">
    {% if subtitle %}<strong>{{subtitle}}</strong>{% endif %}
    {% if title %}<h1 class="m_headline__title">{{title|raw}}</h1>{% endif %}
    {% if suptitle %}<strong>{{suptitle}}</strong>{% endif %}
    {% if text %}
      <div class="m_content">
        {{fn.apply_filters('the_content', fn.html_entity_decode(text))|raw}}
      </div>
    {% endif %}
</div>
{% endif %}
