{% block title %} {{ title }} {% endblock %} {% block header %}

{{ title }}

{% endblock %} {% block content %}
{% include 'templates/includes/product_search_box.html' %}
{% if slideshow %} {% include "templates/includes/slideshow.html" %} {% endif %} {% 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 %}
{% if (items|length)==100 %}
Showing top 100 items.
{% endif %} {% else %}
No items listed.
{% endif %}
{% endblock %} {% block sidebar %}{% include "templates/includes/sidebar.html" %}{% endblock %}