pub / rememori

Simple file-based bookmarking and notes application
git clone https://src.jayvii.de/pub/rememori.git
Home | Log | Files | Exports | Refs | README | RSS

commit 277de1b4ee4bcadff63e2ab5663ed3aaf227463b
parent 786f6e8ecfba77bc7e6406a529d35fb6aaa8e35f
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat, 26 Oct 2024 14:04:42 +0200

feat: add 404 page

Diffstat:
A404.html | 31+++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+), 0 deletions(-)

diff --git a/404.html b/404.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Error - 404</title> + <link rel="stylesheet" href="/assets/css/simple.min.css"> + <link rel="icon" type="image/png" href="/assets/img/favicon.png"> + </head> + <body> + <header> + <nav> + <a href="/"> + Home + </a> + <a href="https://src.jayvii.de/pub/rememori/" target="_blank"> + Development + </a> + </nav> + <h1>Not found (404)</h1> + </header> + <h2>We could not find, what you were looking for</h2> + <p> + Looks like you tried to access a feature that does not exits... + If you believe this is an error, please let us know! + </p> + <button onclick="window.history.back();">Go back!</button> + <br> + </body> +</html>