all repos — nasg @ master

templates/Redirect.j2.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8"/>
        <meta content="width=device-width,initial-scale=1,minimum-scale=1" name="viewport"/>
        <meta http-equiv="refresh" content="3; url={{ target }}" />
        <title>Moved</title>
    </head>

    <body>

    <h1>
        <center>This content has move to a new location:</center>
    </h1>
    <p>
        <center>
            <a href="{{ target }}">{{ target }}</a>
        </center>
    </p>

    <p>
        <center>
            You will be redirected in 3 seconds; if that does not happen, please click on the link.
        </center>
    </p>
 </body>
</html>