Files
Base-website/templates/errors/502.html
2025-07-15 11:33:04 +02:00

18 lines
734 B
HTML

{% extends "base.html" %}
{% block title %}{{ t('Bad Gateway') }} - {{ t('Your Business Name') }}{% endblock %}
{% block content %}
<section class="py-5">
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="error-page">
<h1 class="display-1 fw-bold text-muted">502</h1>
<h2 class="display-6 fw-bold mb-4">{{ t('Bad Gateway') }}</h2>
<p class="lead text-muted mb-4">{{ t('The server received an invalid response from the upstream server.') }}</p>
<a href="{{ url_for('index') }}" class="btn btn-primary btn-lg">{{ t('Go to Homepage') }}</a>
</div>
</div>
</div>
</div>
</section>
{% endblock %}