I’m trying to create a for loop that list all the products in the collection and grabs the product handle and create a code that places the product handle in a url.
{% for product in collection %}
<img src="{{ product.handle | prepend: 'https://arturoagutierrez/img/' | append: '.jpg' }}" >
{% endfor %}
It comes out correct in the html code but the link does not make an image appear.