{% if offer.tags.first == 'specialty' %}
{% assign subcategory = offer_tag | prepend:'subcategory_' %}
{% collection offers, tag:subcategory, order:post_order, exclude:post_id, limit:20, name:subcategories %}
{% if subcategories.size > 0 %}
{% for s in subcategories %}
{% endfor %}
{% endif %}
{% endif %}
{{offer.content}}
{% collection testimonials, limit:1, tag:offer_tag, order:random %}
{% if testimonials.size > 0 %}
{% for testimonial in testimonials %}
{{testimonial.content}}
{% endfor %}
{% endif %}
{% collection offers, tag:offer_tag, order:created_at desc, exclude:post_id, limit:20, name:suppliers %}
{% if suppliers.size > 0 %}
Our Partners
{% for s in suppliers %}
{% if s.tags.first == 'supplier' or s.tags.first == 'Supplier' %}
{% endif %}
{% endfor %}
{% endif %}
{% collection products, limit:4, tag:offer_tag, order:created_at desc, name:related %}
{% if related.size > 0 %}
Featured Offers
{% for p in related %}
{% endfor %}
{% if related.size > 3 %}
{% endif %}
{% endif %}
{% collection blogs, limit:4, tag:offer_tag, order:created_at desc %}
{% if blogs.size > 0 %}
Featured Stories
{% for b in blogs %}
{% endfor %}
{% if blogs.size > 3 %}
{% endif %}
{% endif %}
{% endif %}
{% partial cta %}