I was wondering if there is a way to add all images that belongs to that post using twig syntax in my blog_item.html.twig file. I know i could use markdown for this purpose like:




but this isn't an option for my project. I tried to add something like that:
{% if page.media.images %}
{{page.media.images}}
{% endif %}
in my templates/partials/blog_item.html.twig but didn't work. What i m missing here? I searched almost all the grav documentation but cant find anything.
It would be very much appreciated if someone could give me some help. Thanks in advance.