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