# Best way to display large amount of images in a post

**URL:** https://talk.jekyllrb.com/t/best-way-to-display-large-amount-of-images-in-a-post/973
**Category:** Help
**Created:** [September 12, 2017, 3:13pm UTC](https://talk.jekyllrb.com/t/best-way-to-display-large-amount-of-images-in-a-post/973 "2017-09-12T15:13:23Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![jonsp](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.jekyllrb.com/jonsp/32/467_2.png) [@jonsp](https://talk.jekyllrb.com/u/jonsp)
#### Post date: [September 12, 2017, 3:13pm UTC](https://talk.jekyllrb.com/t/best-way-to-display-large-amount-of-images-in-a-post/973/1 "2017-09-12T15:13:23Z")

</div>

I’m building a photography blog. I’m looking for a way to display a large amount of images one after the other inside each post. Due to there being a lot of images, I’d rather not type the path to each image over and over and would rather just specifiy a folder relating to that post, so that when i make a post, I can simple drop in a new folder with the related images.  
Is this possible?  
Thanks!

---

<div class="post-metadata">

### Author: ![mmistakes](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.jekyllrb.com/mmistakes/32/2169_2.png) [@mmistakes](https://talk.jekyllrb.com/u/mmistakes)
#### Post date: [September 12, 2017, 3:51pm UTC](https://talk.jekyllrb.com/t/best-way-to-display-large-amount-of-images-in-a-post/973/2 "2017-09-12T15:51:28Z")

</div>

Not out of the box, but you can use Liquid to do some heavy lifting. I wrote a blog post explaining how you can leverage `site.static_files` to loop through and pull out images in specific folders.

> **[Accessing static files in Jekyll - Made Mistakes](https://mademistakes.com/notes/static-files/)**
>
> While investigating ways of using static files with Jekyll for a site prototype I was building, I learned that was a thing. What is it and…

There’s probably performance considerations to note with this method as big loops in Jekyll can really add to the build time. A plugin is probably the better solution.
