{% load i18n %} {% load staticfiles %}
{% block title %}Saleor{% endblock %}
{% block meta %}
{% endblock meta %}
{% block stylesheet %}{% endblock stylesheet %} {% block header %}
Toggle navigation
Saleor
{% for category in categories %}
{{ category }}
{% endfor %}
{% trans "Cart" %} {% if request.cart %}
{{ request.cart.count }}
{% endif %}
{% if user.is_authenticated %}
{% blocktrans %}Hello, {{ user }}{% endblocktrans %}
{% trans "Your profile" %}
{% trans "Your orders" %}
{% if user.is_staff %}
{% trans "Dashboard" %}
{% endif %}
{% trans "Log out" %}
{% else %}
Sign in
{% endif %}
{% endblock %} {% if messages %}
{% for message in messages %}
×
{{ message }}
{% endfor %}
{% endif %}
{% block outerbreadcrumb %}
{% block breadcrumb %}
{% trans "Home" %}
{% endblock breadcrumb %}
{% endblock outerbreadcrumb %} {% block outercontent %}
{% block content %}
{% include "category/_items.html" %}
{% endblock content %}
{% endblock outercontent %}
{% block footer %} {% endblock %} {% block footer_scripts %} {% endblock footer_scripts %}