I'm trying to accomplish the following, but I can't seem to get the img
src to populate correctly with the iteration number using Shopify's liquid language.
{% for i in (1..11) %}
<div class="item">
<img src="{{ 'item-{{i}}.jpg' | asset_url }}" alt="Item {{i}}" />
</div>
{% endfor %}