diff options
author | Runxi Yu <me@runxiyu.org> | 2024-07-27 08:00:00 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-07-27 08:00:00 +0800 |
commit | 61fcfac541fe2271c052771b1c33b7511efb75bb (patch) | |
tree | 70b4eb7fdf5b2d7bb17c09c9a5060b2ad79813b6 /templates/404.html | |
parent | Add myself to LICENSE (diff) | |
download | legitrx-61fcfac541fe2271c052771b1c33b7511efb75bb.tar.gz legitrx-61fcfac541fe2271c052771b1c33b7511efb75bb.tar.zst legitrx-61fcfac541fe2271c052771b1c33b7511efb75bb.zip |
Indent the HTML with tabs
Diffstat (limited to 'templates/404.html')
-rw-r--r-- | templates/404.html | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/templates/404.html b/templates/404.html index bca9d35..dd8c813 100644 --- a/templates/404.html +++ b/templates/404.html @@ -1,14 +1,13 @@ {{ define "404" }} <!DOCTYPE html> <html> - <title>404</title> -{{ template "head" . }} - <body> - {{ template "nav" . }} - <main> - <h3>404 — nothing like that here.</h3> - </main> - </body> - + <title>404 Not Found</title> + {{ template "head" . }} + <body> + {{ template "nav" . }} + <main> + <h1>404 Not Found</h1> + </main> + </body> </html> {{ end }} |