os-latest-en-redirect.html 602 B

123456789101112131415
  1. {% capture version %}/{{page.version}}/{% endcapture %}
  2. {% capture redirectto %}{{site.baseurl}}/{{ page.path | replace: "/latest/", version | replace: "index.md", "" }}{% endcapture %}
  3. <!DOCTYPE html>
  4. <meta charset="utf-8">
  5. <title>Redirecting...</title>
  6. <link rel="canonical" href="{{redirectto}}">
  7. <meta http-equiv="refresh" content="0; url={{redirectto}}">
  8. <h1>Redirecting...</h1>
  9. version: {{version}}
  10. from (os/latest/en) {{site.baseurl}}/{{page.path}}
  11. to {{redirectto}}
  12. <a href="{{redirectto}}">Click here if you are not redirected.</a>
  13. <script>location="{{redirectto}}"</script>