I'm making a photography portfolio website and i was wondering if there was a way to import all photos from a certain folder into their own separate divs? Like for example right now I've just been importing using a lot of these:
<div class="fade">
<div class="gallery">
<a target="_blank" href="/Website/Pictures/Lanterns.jpg"><img src="/Website/Pictures/Lanterns.jpg" alt="Lanterns"</a>
</div>
</div>
I find it to be rather inefficient as if i want 20 pictures id have to make 20 of these. I was wondering if there was some way to import them all so that they each are contained in the two classes, but i dont have to improt them each separately?