Files
fnx_web/res/template/file_not_found.html

68 lines
1.3 KiB
HTML
Raw Normal View History

{{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>
{{template "meta_tags" "404, File Not Found"}}
2017-11-10 12:39:55 +01:00
</head>
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>
<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>
</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" .}}
{{template "analytics"}}
</body>
</html>
{{end}}
{{define "list_not_found"}}<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
<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>
<section>
<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>
2022-07-05 17:46:37 +02:00
The person who created the list has deleted it
2022-01-03 14:02:50 +01:00
</li>
</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>
{{end}}