custom-redirect.html 320 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="refresh" content="0;url={{ page.src }}" />
  5. <title>{{ page.title }}</title>
  6. <script language="javascript">
  7. window.location.href = "{{ page.src }}";
  8. </script>
  9. </head>
  10. <body>
  11. Go to <a href="{{ page.src }}">{{ page.src }}</a>
  12. </body>
  13. </html>