Add StorefrontAccessMiddleware that blocks storefront access for stores without an active subscription, returning a multilingual unavailable page (en/fr/de/lb) for page requests and JSON 403 for API requests. Multi-platform aware: resolves subscription for detected platform with fallback to primary. Also includes yesterday's session work: - Module-driven storefront navigation via FrontendType.STOREFRONT menu declarations - shop/ → storefront/ URL rename across 30+ templates - Subscription context (tier_code) passed to storefront templates Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
1022 B
HTML
23 lines
1022 B
HTML
{# app/templates/storefront/errors/404.html #}
|
|
{# 404 Not Found error page - uses base template with custom icon and message #}
|
|
{% extends "storefront/errors/base.html" %}
|
|
|
|
{% block icon %}🔍{% endblock %}
|
|
|
|
{% block title %}404 - Page Not Found{% endblock %}
|
|
|
|
{% block action_buttons %}
|
|
<a href="{{ base_url }}storefront/"
|
|
class="inline-flex items-center px-8 py-4 rounded-xl font-semibold text-white bg-theme-primary hover:opacity-90 hover:-translate-y-0.5 transition-all shadow-lg">
|
|
Continue Shopping
|
|
</a>
|
|
<a href="{{ base_url }}storefront/products"
|
|
class="inline-flex items-center px-8 py-4 rounded-xl font-semibold text-theme-primary border-2 border-theme-primary hover:bg-theme-primary hover:text-white hover:-translate-y-0.5 transition-all">
|
|
View All Products
|
|
</a>
|
|
{% endblock %}
|
|
|
|
{% block support_link %}
|
|
Can't find what you're looking for? <a href="{{ base_url }}storefront/contact" class="text-theme-primary font-semibold hover:underline">Contact us</a> and we'll help you find it.
|
|
{% endblock %}
|