Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header_location.twig « templates - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96f486c16832fed0e142959ee6556273413fb30a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{# Manage HTML redirection #}
<html>
<head>
    <title>- - -</title>
    <meta http-equiv="expires" content="0">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Cache-Control" content="no-cache">
    <meta http-equiv="Refresh" content="0;url={{ uri }}">
    <script type="text/javascript">
        //<![CDATA[
        setTimeout(function() { window.location = decodeURI('{{ uri|escape('js') }}'); }, 2000);
        //]]>
    </script>
</head>
<body>
<script type="text/javascript">
    //<![CDATA[
    document.write('<p><a href="{{ uri|escape('js') }}">{% trans 'Go' %}</a></p>');
    //]]>
</script>
</body>
</html>