413.html
HTML document, ASCII text
1
{% extends "error.html" %}
2
3
{% set error = "Payload too large" %}
4
{% set error_code = 413 %}
5
6
{% block error_content %}
7
<p>
8
Your request's body is too large for the server to process. This is a free service;
9
be considerate of the resources you use. If this is your second time seeing this error,
10
do you want to get in trouble for vandalism?<br>
11
<strong>Don't do it again, and <a href="/info/">read about our limits</a>.</strong><br>
12
Hopefully, the random picture here will help you calm down and reconsider your actions
13
(if they were intentional).
14
</p>
15
<p>
16
There are better places to waste storage someone is paying for. Try <a href="https://drive.google.com/">Google Drive</a>,
17
<a href="https://www.dropbox.com/">Dropbox</a>, <a href="https://onedrive.live.com/">Microsoft OneDrive</a>,
18
<a href="https://mediafire.com/">MediaFire</a> or <a href="https://github.com">GitHub</a>.
19
but not our server.
20
</p>
21
<p>
22
There's above a 33% chance that you're obsessed with JavaScript and "modern" (i.e. overcomplicated)
23
web development; in that case there's <a href="https://www.netlify.com/">Netlify</a> and
24
<a href="https://aws.amazon.com/s3/">Amazon S3</a> for you.
25
</p>
26
<p>
27
(disclaimer: check terms of service before abusing their services)
28
</p>
29
<p>
30
<a href="/">Home page</a>
31
</p>
32
<p>
33
<a href="/picture/{{ random_picture.id }}/">Like what you see?</a>
34
</p>
35
{% endblock %}
36