I am trying to get the first page folder image inside a twig template with a “width: 100%” CSS style applied.
I have tried both:
<a href="{{ page.url }}">{{ page.media[0].html('{{ post.title }}', '{{ page.title }}', 'full-width') }}</a>
(with a CSS file with 100% width applied).
and
<a href="{{ page.url }}"><img src="{{ page.media.images[0].url }}" alt="{{ page.title }}" style="width: 100%" /></a>
without success.
Any tips? Thanks.