diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-04-13 16:46:04 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-04-13 16:46:04 -0400 |
| commit | 3e255208a9776ad377f3b62d79d982138e89539a (patch) | |
| tree | 45ed64ad10ea19eabf1a57b8a8b4d42ee6111e13 /themes/okadmin/templates/5xx.liquid | |
| parent | e791ea8b3d6855b62962e4c89ad2c9f86126daf1 (diff) | |
| parent | c702d76549ead663daed0147f5c160c368a61c45 (diff) | |
Merge branch 'twohustlers' of github.com:okfocus/okcms into twohustlers
Diffstat (limited to 'themes/okadmin/templates/5xx.liquid')
| -rw-r--r-- | themes/okadmin/templates/5xx.liquid | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/themes/okadmin/templates/5xx.liquid b/themes/okadmin/templates/5xx.liquid new file mode 100644 index 0000000..f245545 --- /dev/null +++ b/themes/okadmin/templates/5xx.liquid @@ -0,0 +1,54 @@ +<!DOCTYPE html> +<html> + <head> + <title>404</title> + <style type="text/css"> + html, body { + margin: 0; + padding: 0; + font-family: "Helvetica", sans-serif; + background-image: url('http://okfoc.us/assets/images/photocopy.png'); + background-position: bottom center; + background-repeat: repeat; + background-attachment: scroll; + height: 100%; + font-size: 1.75em; + font-weight: bold; + color: #FFFFFF; + } + + a { + color: #8888FF; + text-decoration: none; + } + + a:hover { + border-bottom: 3px solid #8888FF; + } + + a:visited { + color: #8888FF; + } + + .message { + width: 700px; + padding: 0 1em 1em 1em; + background-color: #0000FF; + margin: 0 auto; + margin-top: 1em; + } + + .message p:first-child { + margin-top: 0; + } + </style> + </head> + <body> + <div class="message"> + <p>(;一_一)</p> + <p>Looks like we experienced an error.</p> + <p>Sorry about that. Maybe try again later.</p> + <a href="javascript:history.back()">Back</a> + </div> + </body> +</html> |
