{% extends "portal/layouts/base.html" %}
{% block title %} Home {% endblock %}
{% block meta %}
{% endblock %}
{% block stylesheets %}{% endblock stylesheets %}
{% block scripts %}{% endblock scripts %}
{% block quick_view %}
{% include 'portal/layouts/quick_view.html' %}
{% endblock quick_view %}
{% block content %}
{% include 'portal/layouts/slider.html' %}
{% include 'portal/layouts/featured_categories.html' with featured_categories=featured_categories %}
{% include 'portal/layouts/bottom_banner.html' %}
{% include 'portal/layouts/categories.html' with by_categories=by_categories %}
{% include 'portal/layouts/best_seller.html' with products=best_seller %}
{% include 'portal/layouts/latest_blogs.html' with blogs=latest_blogs %}
{% if our_partners %}
{% include 'portal/layouts/our_partners.html' with partners=our_partners %}
{% endif %}
{% endblock content %}