redirect.html 531 B

1234567891011
  1. {% capture url %}{% if include.url contains 'http://' or include.url contains 'https://' %}{{ include.url }}{% else %}{{ site.base }}{{ include.url }}{% endif %}{% endcapture %}
  2. <!DOCTYPE html>
  3. <html lang="en-US">
  4. <meta charset="utf-8">
  5. <title>Redirecting…</title>
  6. <link rel="canonical" href="{{ url }}">
  7. <meta http-equiv="refresh" content="0; url={{ url }}">
  8. <meta name="robots" content="noindex">
  9. <noscript><a href="{{ url }}">Click here if you are not redirected.</a></noscript>
  10. <script>location="{{ url }}";</script>
  11. </html>