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"}}
|
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>
|
2022-10-11 14:21:06 +02:00
|
|
|
<div id="page_content" class="page_content">
|
|
|
|
<section>
|
|
|
|
<p>
|
|
|
|
This file does not exist, or it has been removed. Possible
|
|
|
|
reasons for this are:
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
The file has not been viewed for 60 days and has expired
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
The person who uploaded the file has deleted it
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<p>
|
|
|
|
I'm sorry for the inconvenience.
|
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
</div>
|
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"}}
|
|
|
|
</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>
|
2022-10-11 14:21:06 +02:00
|
|
|
<div id="page_content" class="page_content">
|
|
|
|
<section>
|
|
|
|
<p>
|
|
|
|
This list does not exist, or it has been removed. Possible
|
|
|
|
reasons for this are:
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
All files in this list have not been viewed for 60 days and
|
|
|
|
have expired
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
The person who created the list has deleted it
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<p>
|
|
|
|
I'm sorry for the inconvenience.
|
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
</div>
|
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}}
|