{% extends "base.html" %} {% block title %}{{ super() }} :: Search{% endblock %} {% block content %}
{% if page.full_item_count %}

Search Results

{% import 'listing.html' as listing %} {{ listing.list(items) }} {% import 'pager.html' as pager %} {{ pager.pager(page) }} {% else %} Sorry, No such results match your query. {% endif %} {% endblock %}