{% block styles %}{% endblock %}
Home
Products
{% if current_user.is_authenticated %}
Cart {% if current_user.cart and current_user.cart.items|length > 0 %}
{{ current_user.cart.items|length }}
{% endif %}
My Profile
{% if current_user.is_admin %}
Admin Panel
{% endif %}
Logout
{% else %}
Login
Register
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}