blob: 42e317d2bc47a67fd868344f1f8419091d115bfe (
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
30
31
32
33
34
|
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<title>Python Discord | 404</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>404 — Not Found</h1>
<p>We couldn't find the page you're looking for. Here are a few things to try out:</p>
<ul>
<li>Double check the URL. Are you sure you typed it out correctly?
<li>Come join <a href="https://discord.gg/python">our Discord Server</a>. Maybe we can help you out over
there
</ul>
</div>
</div>
</body>
</html>
|