{% load static %} {% block title %}My shop{% endblock %}
{% with total_items=cart|length %} {% if total_items > 0 %} Your cart: {{ total_items }} item{{ total_items|pluralize }}, ${{ cart.get_total_price }} {% else %} Your cart is empty. {% endif %} {% endwith %}
{% block content %} {% endblock %}