diff options
author | Martin Ashby <martin@ashbysoft.com> | 2024-03-27 20:49:30 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2024-03-27 20:49:30 +0000 |
commit | 6a68d2e06932d848571948eea9ec586027a42fd6 (patch) | |
tree | 37dcdc00981de673344156f3fb6bea59f8dc0d29 /layouts/redirect.html | |
parent | 525ade5a6de3837699b5c7e66686c3e5c8b5a1f3 (diff) | |
download | mfashby.net-6a68d2e06932d848571948eea9ec586027a42fd6.tar.gz mfashby.net-6a68d2e06932d848571948eea9ec586027a42fd6.tar.bz2 mfashby.net-6a68d2e06932d848571948eea9ec586027a42fd6.tar.xz mfashby.net-6a68d2e06932d848571948eea9ec586027a42fd6.zip |
Add post on zine
Remove video assets from git, they are now hosted on move IT Tube
Add client-side redirect to help when using zine serve.
Diffstat (limited to 'layouts/redirect.html')
-rw-r--r-- | layouts/redirect.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/redirect.html b/layouts/redirect.html new file mode 100644 index 0000000..9cfd747 --- /dev/null +++ b/layouts/redirect.html @@ -0,0 +1,14 @@ +<!DOCTYPE HTML> +<html lang="en-US"> + <head> + <meta charset="UTF-8"> + <meta http-equiv="refresh" content="0; url=/posts/"> + <script type="text/javascript"> + window.location.href = "/posts/" + </script> + <title>Page Redirection</title> + </head> + <body> + If you are not redirected automatically, follow this <a href='/post/'>link</a>. + </body> +</html> |