You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
676 B

  1. {# Manage HTML redirection #}
  2. <html>
  3. <head>
  4. <title>- - -</title>
  5. <meta http-equiv="expires" content="0" />
  6. <meta http-equiv="Pragma" content="no-cache" />
  7. <meta http-equiv="Cache-Control" content="no-cache" />
  8. <meta http-equiv="Refresh" content="0;url={{ uri }}" />
  9. <script type="text/javascript">
  10. //<![CDATA[
  11. setTimeout(function() { window.location = decodeURI('{{ Sanitize_escapeJsString(uri) }}'); }, 2000);
  12. //]]>
  13. </script>
  14. </head>
  15. <body>
  16. <script type="text/javascript">
  17. //<![CDATA[
  18. document.write('<p><a href="{{ Sanitize_escapeJsString(uri|e) }}">{% trans 'Go' %}</a></p>');
  19. //]]>
  20. </script>
  21. </body>
  22. </html>