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

redirect.html « layouts - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a66e73fb5a57de4213d1543dcafe26046f30c5da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Redirecting...</title>
    <link rel="canonical" href="<%= @item[:redirect] %>">
    <meta http-equiv="refresh" content="0; url=<%= @item[:redirect] %>">
  </head>
  <body>
    <h1>Redirecting...</h1>
    <a href="<%= @item[:redirect] %>">Click here if you are not redirected.</a>
    <script>location='<%= @item[:redirect] %>'</script>
  </body>
</html>