diff options
| author | 2021-03-01 17:13:35 +0100 | |
|---|---|---|
| committer | 2021-03-01 17:13:35 +0100 | |
| commit | df9f5907248792c701139e5e05dc59af69cb88a1 (patch) | |
| tree | 003d16d51eea030511308db18a54c15064b045c0 | |
| parent | Add error page styling (diff) | |
Add 500 page
| -rw-r--r-- | pydis_site/templates/500.html | 29 | 
1 files changed, 29 insertions, 0 deletions
diff --git a/pydis_site/templates/500.html b/pydis_site/templates/500.html new file mode 100644 index 00000000..831ed285 --- /dev/null +++ b/pydis_site/templates/500.html @@ -0,0 +1,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>Sorry, but something went wrong on our side of things.</p> +        </div> +    </div> +</body> + +</html>  |