# images

> The images Liquid object, which holds every image in a Shoplazza store and lets a theme access one image by its filename.

All of the images are in a store.

You can access images from the `images` array by their filename.

```liquid title="Code"
{% assign path = '74f03d97e0ac95a1ab8e3e75327a7019.jpeg' %}
{{ images[path] | img_url }}
```

```html title="Output"
//cdn.shoplazza.com/74f03d97e0ac95a1ab8e3e75327a7019.jpeg
```
