index.html 853 B

123456789101112131415161718192021222324252627
  1. ---
  2. permalink: /index.html
  3. title: "Index"
  4. layout: none
  5. ---
  6. <!-- The index page should simply re-direct to the first chapter -->
  7. {% for chapter in site.data.toc %}
  8. {% unless chapter.external %}
  9. {% if chapter.url %}
  10. {% comment %}This ensures that the first link we re-direct to isn't an external site {% endcomment %}
  11. {% assign redirectURL = chapter.url | relative_url %}
  12. {% break %}
  13. {% endif %}
  14. {% endunless %}
  15. {% endfor %}
  16. <!DOCTYPE html>
  17. <html lang="en-US">
  18. <meta charset="utf-8">
  19. <title>Redirecting&hellip;</title>
  20. <link rel="canonical" href="{{ redirectURL }}">
  21. <script>location="{{ redirectURL }}"</script>
  22. <meta http-equiv="refresh" content="0; url={{ redirectURL }}">
  23. <meta name="robots" content="noindex">
  24. <h1>Redirecting&hellip;</h1>
  25. <a href="{{ redirectURL }}">Click here if you are not redirected.</a>
  26. </html>