Yahya

<h2>Shop Yahya’s Products</h2>
{% for product in collections['yahyas-products'].products %}
  <div>
      <img src="{{ product.featured_image | img_url: 'medium' }}" alt="{{ product.title }}">
      <h3><a href="{{ product.url }}">{{ product.title }}</a></h3>
      <p>{{ product.price | money }}</p>
      <a href="{{ product.url }}" class="btn">View Product</a>
  </div>
{% endfor %}