<article class="ml-news is-m{% if hasImage is defined and hasImage == true %} has-media{% endif %} {{ modifiers ?? '' }}">
{% if hasImage is defined and hasImage == true %}
<div class="news-media-wrapper">
<img src="https://picsum.photos/700/394" alt="">
</div>
{% endif %}
<div class="news-content-wrapper">
{% if tags is defined %}
{% include 'molecules/custom-tags-list.html.twig' %}
{% else %}
{% include 'molecules/tags-list.html.twig' %}
{% endif %}
<h2 class="at-title">
<a href="{{ link ?? path('news_item') }}">{{ title ?? 'Sumario dun contido de actualidade M' }}</a>
</h2>
<div class="at-text">
<p>{{ text ?? 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec viverra eros quis ex malesuada pellentesque.' }}</p>
<a href="{{ arrow ?? path('news_item') }}" class="news-read-more">
<span class="is-sr-only">Ler máis</span>
</a>
</div>
</div>
</article>