Below is the layout structure on my website:
<div class="panel-heading"><h3 class="panel-title">Suggestions</h3></div>
<div class="panel-body">
<div class="col-md-7">
<h3><span class="label label-default">Provide Suggestions for users</span></h3>
Need to insert information here
</div>
</div>
</div>
I've implemented Bootstrap based on advice I found on Stack Overflow. I will be sending a list of images from the back-end, and I need to render these images inside the "panel_body" as depicted in the wireframe below.
What would be the most effective way to achieve this? Although I lack knowledge in JavaScript, I believe it might be necessary for this task. If someone can guide me towards a similar example, I could try to figure it out on my own. I think JavaScript could handle this, but I'm uncertain about what specifically to search for.