add redirect template for Posty1 compat
This commit is contained in:
parent
3635ccf77f
commit
ae105a53f0
1 changed files with 20 additions and 0 deletions
20
templates/redirect.html
Normal file
20
templates/redirect.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue