{# app/templates/storefront/errors/base.html #} {# Error page base template using Tailwind CSS with store theme support #} {% block title %}{{ status_code }} - {{ status_name }}{% endblock %}{% if store %} | {{ store.name }}{% endif %} {# Tailwind CSS #} {# Store theme colors via CSS variables #} {% if theme and theme.custom_css %} {% endif %}
{# Store Logo #} {% if store and theme and theme.branding and theme.branding.logo %} {{ store.name }} {% endif %} {% block content %} {# Error Icon #}
{% block icon %}⚠️{% endblock %}
{# Status Code #}
{{ status_code }}
{# Status Name #}

{{ status_name }}

{# Error Message #}

{{ message }}

{# Action Buttons #}
{% block action_buttons %} Continue Shopping Contact Us {% endblock %}
{% block extra_content %}{% endblock %} {# Support Link #}
{% block support_link %} Need help? Contact our support team {% endblock %}
{# Store Info #} {% if store %}
{{ store.name }}
{% endif %} {% endblock %}