2016-01-01 17:23:12 +05:30
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
2015-06-01 17:23:42 +05:30
|
|
|
{% block header_actions %}
|
|
|
|
{% include 'templates/includes/product_search_box.html' %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-01-04 17:50:40 +05:30
|
|
|
{% block breadcrumbs %}
|
|
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-01-01 17:23:12 +05:30
|
|
|
{% block page_content %}
|
2014-04-18 16:15:31 +05:30
|
|
|
<div class="item-group-content">
|
|
|
|
<div>
|
|
|
|
{% if slideshow %}<!-- slideshow -->
|
|
|
|
{% include "templates/includes/slideshow.html" %}
|
|
|
|
{% endif %}
|
|
|
|
{% if description %}<!-- description -->
|
|
|
|
<div itemprop="description">{{ description or ""}}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{% if items %}
|
|
|
|
<div id="search-list" class="row">
|
|
|
|
{% for item in items %}
|
|
|
|
{{ item }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% if (items|length)==100 %}
|
2015-01-23 15:22:13 +05:30
|
|
|
<div class="text-muted info">Showing top 100 items.</div>
|
2014-04-18 16:15:31 +05:30
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
2014-04-21 22:10:15 +05:30
|
|
|
<div class="text-muted">No items listed.</div>
|
2014-04-18 16:15:31 +05:30
|
|
|
{% endif %}
|
2014-04-21 11:42:22 +05:30
|
|
|
</div>
|
2014-04-18 16:15:31 +05:30
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2015-02-23 22:14:12 +05:30
|
|
|
|
|
|
|
{% block style %}
|
|
|
|
<style>
|
|
|
|
.product-image.missing-image {
|
2015-02-24 17:50:44 +05:30
|
|
|
border: 1px dashed {{ theme.border_color or "#d1d8dd" }};
|
2015-02-23 22:14:12 +05:30
|
|
|
}
|
|
|
|
|
2015-02-24 17:50:44 +05:30
|
|
|
.product-image.missing-image .octicon {
|
|
|
|
color: {{ theme.border_color or "#d1d8dd" }};
|
2015-02-23 22:14:12 +05:30
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|