mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
jekyll-redirect-from v0.12.1 causes "Liquid Exception: invalid byte sequence in US-ASCII in _layouts/redirect.html" -override default built-in redirect.html with a custom "_layouts/redirect.html" that has the ellipsis HTML fix encoded localy
12 lines
433 B
HTML
12 lines
433 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<meta charset="utf-8">
|
|
<title>Redirecting…</title>
|
|
<link rel="canonical" href="{{ page.redirect.to }}">
|
|
<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>
|