2018-06-25 23:05:18 +02:00
|
|
|
{{define "file_not_found"}}<!DOCTYPE html>
|
2020-01-17 20:32:21 +01:00
|
|
|
<html lang="en">
|
2017-11-10 12:39:55 +01:00
|
|
|
<head>
|
2019-07-28 22:34:15 +02:00
|
|
|
{{template "meta_tags" "404, File Not Found"}}
|
2019-02-18 13:37:41 +01:00
|
|
|
{{template "user_style" .}}
|
2017-11-10 12:39:55 +01:00
|
|
|
</head>
|
2019-07-28 22:34:15 +02:00
|
|
|
|
2017-11-10 12:39:55 +01:00
|
|
|
<body>
|
2019-09-17 23:38:40 +02:00
|
|
|
{{template "page_top" .}}
|
2022-01-11 13:28:22 +01:00
|
|
|
<header>
|
2022-01-03 14:02:50 +01:00
|
|
|
<h1>404, File Not Found!</h1>
|
2022-01-11 13:28:22 +01:00
|
|
|
</header>
|
|
|
|
<section>
|
2019-07-28 22:34:15 +02:00
|
|
|
<p>
|
|
|
|
This file does not exist, or it has been removed. Possible
|
|
|
|
reasons for this are:
|
|
|
|
</p>
|
|
|
|
<ul>
|
2021-08-18 13:00:07 +02:00
|
|
|
<li>
|
|
|
|
The file has not been viewed for 30 days and has expired
|
|
|
|
</li>
|
|
|
|
<li>
|
2022-01-03 14:02:50 +01:00
|
|
|
The person who uploaded the file has deleted it
|
2021-08-18 13:00:07 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
Something went wrong on the pixeldrain servers causing the
|
|
|
|
file to be temporarily unavailable
|
|
|
|
</li>
|
|
|
|
<li>
|
2021-11-15 23:57:52 +01:00
|
|
|
The file has been lost due to a problem with the storage
|
2021-08-18 13:00:07 +02:00
|
|
|
system
|
|
|
|
</li>
|
2019-07-28 22:34:15 +02:00
|
|
|
</ul>
|
|
|
|
<p>
|
|
|
|
I'm sorry for the inconvenience.
|
|
|
|
</p>
|
2022-01-11 13:28:22 +01:00
|
|
|
</section>
|
2019-09-17 23:38:40 +02:00
|
|
|
{{template "page_bottom" .}}
|
2019-07-28 22:34:15 +02:00
|
|
|
{{template "analytics"}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|
|
|
|
{{define "list_not_found"}}<!DOCTYPE html>
|
2020-01-17 20:32:21 +01:00
|
|
|
<html lang="en">
|
2019-07-28 22:34:15 +02:00
|
|
|
<head>
|
|
|
|
{{template "meta_tags" "404, List Not Found"}}
|
|
|
|
{{template "user_style" .}}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2019-09-17 23:38:40 +02:00
|
|
|
{{template "page_top" .}}
|
2022-01-11 13:28:22 +01:00
|
|
|
<header>
|
2022-01-03 14:02:50 +01:00
|
|
|
<h1>404, List Not Found!</h1>
|
2022-01-11 13:28:22 +01:00
|
|
|
</header>
|
|
|
|
<section>
|
2019-07-28 22:34:15 +02:00
|
|
|
<p>
|
|
|
|
This list does not exist, or it has been removed. Possible
|
|
|
|
reasons for this are:
|
|
|
|
</p>
|
|
|
|
<ul>
|
2022-01-03 14:02:50 +01:00
|
|
|
<li>
|
|
|
|
All files in this list have not been viewed for 30 days and
|
|
|
|
have expired
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
Something went wrong on the pixeldrain servers causing the
|
|
|
|
list to be temporarily unavailable
|
|
|
|
</li>
|
2019-07-28 22:34:15 +02:00
|
|
|
</ul>
|
|
|
|
<p>
|
|
|
|
I'm sorry for the inconvenience.
|
|
|
|
</p>
|
2022-01-11 13:28:22 +01:00
|
|
|
</section>
|
2019-09-17 23:38:40 +02:00
|
|
|
{{template "page_bottom" .}}
|
2017-11-10 12:39:55 +01:00
|
|
|
{{template "analytics"}}
|
|
|
|
</body>
|
|
|
|
</html>
|
2018-06-25 23:05:18 +02:00
|
|
|
{{end}}
|