diff options
author | Erg <uinarf@autistici.org> | 2024-11-28 16:40:51 +0100 |
---|---|---|
committer | Erg <uinarf@autistici.org> | 2024-11-28 16:40:51 +0100 |
commit | bf8efbce7f202f1f7650f628955fb0e42d343a1f (patch) | |
tree | d80a2556b24efdd4a9e0d8e6f5f6a11bcb3b5afd /templates/error_404/error_404.html | |
download | fastapi_blog-bf8efbce7f202f1f7650f628955fb0e42d343a1f.tar.gz fastapi_blog-bf8efbce7f202f1f7650f628955fb0e42d343a1f.tar.bz2 fastapi_blog-bf8efbce7f202f1f7650f628955fb0e42d343a1f.zip |
Initial commit. Serving main page and static html files, extra 404 error, contains openrc service file and accompanying scriptHEADmaster
Diffstat (limited to 'templates/error_404/error_404.html')
-rw-r--r-- | templates/error_404/error_404.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/error_404/error_404.html b/templates/error_404/error_404.html new file mode 100644 index 0000000..e29259b --- /dev/null +++ b/templates/error_404/error_404.html @@ -0,0 +1,16 @@ +<html> +<head> + <meta name="viewport" content="width=device-width" /> + <link rel="stylesheet" type="text/css" href="/static/css/error_404.css"> +</head> +<body> + +<h1>404</h1> +<p class="centered">Page Not Found</p> + +<svg width=100% height=100%> + <image max-width=100% max-height=100% href="/static/media/sneakers.svg"> +</svg> + +</body> +</html> |