add redirect template for Posty1 compat

This commit is contained in:
Nick Pegg 2018-01-20 22:13:15 -08:00
parent 3635ccf77f
commit ae105a53f0

20
templates/redirect.html Normal file
View file

@ -0,0 +1,20 @@
<html>
<head>
<!-- Try JavaScript first -->
<script type="text/javascript">
window.location = "{{ url }}";
</script>
<!-- If JavaScript is disabled or not supported, kick it old-school -->
<noscript>
<meta http-equiv="refresh" content="0; url={{ url }}">
</noscript>
</head>
<body>
<!-- If their browser is super-old, just give them a link to click -->
<p>
This page has moved. If your browser hasn't redirected you already,
<a href="{{ url }}">click here</a>.
</p>
</body>
</html>