aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/500.html
blob: 869892ec1ad3792c1a2344b786988a905de39f1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% load static %}

<!DOCTYPE html>
<html lang="en">

<head>
    <title>Python Discord | 500</title>

    <meta charset="UTF-8">

    <link rel="preconnect" href="https://fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css2?family=Hind:wght@400;600&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="{% static "css/error_pages.css" %}">
</head>

<body>
    <div class="error-box">
        <div class="logo-box">
            <img src="https://raw.githubusercontent.com/python-discord/branding/b67897df93e572c1576a9026eb78c785a794d226/logos/logo_banner/logo_site_banner.svg"
                alt="Python Discord banner" />
        </div>
        <div class="content-box">
            <h1>500 — Internal Server Error</h1>
            <p>Something went wrong at our end. Please try again shortly, or if the problem persists, please let us know <a href="https://discord.gg/python">on Discord</a>.</p>
        </div>
    </div>
</body>

</html>