18 lines
747 B
HTML
18 lines
747 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ t('Gateway Timeout') }} - {{ 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">504</h1>
|
|
<h2 class="display-6 fw-bold mb-4">{{ t('Gateway Timeout') }}</h2>
|
|
<p class="lead text-muted mb-4">{{ t('The server did not receive a timely 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 %} |