17 lines
684 B
HTML
17 lines
684 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en-US">
|
||
|
<meta charset="utf-8">
|
||
|
<title>Redirecting…</title>
|
||
|
{%- assign redirect_to = page.redirect.to | remove_first: 'https://docs.docker.com' | remove_first: 'http://docs.docker.com' %}
|
||
|
{%- if redirect_to contains "://" %}
|
||
|
<link rel="canonical" href="{{ redirect_to }}">
|
||
|
{%- else %}
|
||
|
<link rel="canonical" href="https://docs.docker.com{{ redirect_to }}">
|
||
|
{%- endif %}
|
||
|
<meta http-equiv="refresh" content="0; url={{ redirect_to }}">
|
||
|
<meta name="robots" content="noindex">
|
||
|
<h1>Redirecting…</h1>
|
||
|
<a href="{{ redirect_to }}">Click here if you are not redirected.</a>
|
||
|
<script>location="{{ redirect_to }}"</script>
|
||
|
</html>
|