71 lines
1.6 KiB
HTML
71 lines
1.6 KiB
HTML
{{define "file_not_found"}}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{template "meta_tags" "404, File Not Found"}}
|
|
{{template "user_style" .}}
|
|
</head>
|
|
|
|
<body>
|
|
{{template "page_top" .}}
|
|
<h1>404, File Not Found!</h1>
|
|
<div class="page_content"><div class="limit_width">
|
|
<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 30 days and has expired
|
|
</li>
|
|
<li>
|
|
The user who uploaded the file has deleted it
|
|
</li>
|
|
<li>
|
|
Something went wrong on the pixeldrain servers causing the
|
|
file to be temporarily unavailable
|
|
</li>
|
|
<li>
|
|
File file has been lost due to a problem with the storage
|
|
system
|
|
</li>
|
|
</ul>
|
|
<p>
|
|
I'm sorry for the inconvenience.
|
|
</p>
|
|
|
|
</div></div>
|
|
{{template "page_bottom" .}}
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|
|
{{define "list_not_found"}}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{template "meta_tags" "404, List Not Found"}}
|
|
{{template "user_style" .}}
|
|
</head>
|
|
|
|
<body>
|
|
{{template "page_top" .}}
|
|
<h1>404, List Not Found!</h1>
|
|
<div class="page_content"><div class="limit_width">
|
|
<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 30 days and have expired</li>
|
|
<li>Something went wrong on the pixeldrain servers causing the list to be temporarily unavailable</li>
|
|
</ul>
|
|
<p>
|
|
I'm sorry for the inconvenience.
|
|
</p>
|
|
|
|
</div></div>
|
|
{{template "page_bottom" .}}
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|