{% extends "base.html" %} {% load static %} {% block title %}Shop ยท {{ SITE_NAME }}{% endblock %} {% block meta_description %}Shop 3D printed toys from {{ SITE_NAME }}. {{ CONTACT_SERVICE_AREA }}.{% endblock %} {% block content %} {% include "public/_breadcrumbs.html" with title="Shop" %}

Shop Toys

{% if products %}
{% for product in products %} {% cycle 'product-1-292x256.png' 'product-2-292x256.png' 'product-3-292x256.png' 'product-4-292x256.png' 'product-5-292x256.png' 'product-6-292x256.png' as product_img silent %}
{% include "shop/_product_card.html" with product=product product_img=product_img %}
{% endfor %}
{% else %}

No products listed yet. Ask us to print a custom toy.

Request a custom toy {% endif %}
{% endblock %}