{% extends 'store/layout/layout.html' %} {% load static %} {% block title %}Search{% endblock %} {% block style %}{% endblock %} {% block body %}
{% if products %} {% include 'store/includes/products.html' with products=products search=search q=q %}
{% include 'store/pagination.html' with page_obj=products %}
{% else %} Results 0 {% endif %}
{% include 'store/modals/homepage.html' %} {% endblock %} {% block script %} {% include 'store/handlebars/homepage.html' %} {% endblock %}