How to display model data along with the images from the fil

I have a controller that is similar to the one below. But how do I use
the
send_file method inside the controller so that I can display images as
well
as display the text.

For example, if my controller name is called images and I am displaying
all
the attributes about the image like artist name, song title and wanted
to
use their band picture also in the same controller?

http://localhost/images/list should display

<%= images.name%> <%= images.title%> <%= images.price%> band picture. This is coming from a file store

How do I accomplish that.

Silvy