Including images without their name

I have many images:

pages/works/work1/image1.png
pages/works/work1/image2.png
pages/works/work1/image3.png
pages/works/work1/image4.png

and some MarkDown-files:

pages/works/works.md
pages/works/work1/work.md

I’d like to include those images without using their names.

Thank you very much !!!

Sure, you just need to loop over page.media.image when displaying the page:

{% for image in page.media.images %}
   {{ image.html }}
{% endfor %}

thank you so much, I had no idea.