diff options
author | cyfraeviolae <cyfraeviolae> | 2024-04-03 13:54:40 -0400 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2024-04-03 13:54:40 -0400 |
commit | 0466dca275d01b659f977e5471c8ded34cabf9ab (patch) | |
tree | 5edd89bf32f24ac1da66352323fc9bf78c04c594 /templates | |
parent | aaf5ab84eb155a0f76719a2d5253272c5053d247 (diff) |
errors
Diffstat (limited to 'templates')
-rw-r--r-- | templates/error.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/error.html b/templates/error.html new file mode 100644 index 0000000..0617a20 --- /dev/null +++ b/templates/error.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> + <head> + <title>Symposium</title> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" type="text/css" href="/static/styles.css"> + <link rel="stylesheet" type="text/css" href="/symposium/static/styles.css"> + <link rel="shortcut icon" type="image/x-icon" href="/symposium/static/favicon.ico"> + </head> + <body> + <div class="container"> + <div> + <div class="home"> + <a href="/symposium" class="home-title">Symposium</a> + <span> at </span><a class="site" href="/">cyfraeviolae.org</a> + <a class="source" href="/git/symposium">[src]</a> + </div> + </div> + + <br> + <h3>Error.</h3> + + {{ error }} + </div> + </body> +</html> |