{% extends "html/page.html" %} {% block title %}{{ name }}{% endblock %} {% block content %}
{% include 'html/product_search_box.html' %} {% include 'html/product_breadcrumbs.html' %} {% if description %}
{{ description or ""}}
{% else %}

{{ name }}

{% endif %} {% if sub_groups %}
{% for d in sub_groups %} {% endfor %}
{% endif %} {% if items %}
{% for item in items %} {{ item }} {% endfor %}
{% endif %}
{% endblock %}