home.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE HTML>
  2. <html lang="en" >
  3. <head>
  4. {%- include head.html -%}
  5. {% assign reversed_posts = site.posts | reverse %}
  6. {% if reversed_posts %}
  7. <link rel="next" href="{{site.baseurl}}{{reversed_posts.first.url}}" />
  8. {% endif %}
  9. </head>
  10. <body>
  11. <div class="book">
  12. {%- include toc-date.html -%}
  13. <div class="book-body">
  14. {%- include body.html -%}
  15. {% if reversed_posts %}
  16. <a href="{{site.baseurl}}{{reversed_posts.first.url}}" class="navigation navigation-next navigation-unique" aria-label="Next page: {{reversed_posts.first.title}}">
  17. <i class="fa fa-angle-right"></i>
  18. </a>
  19. {% endif %}
  20. </div>
  21. <!-- {%- include search.html -%} -->
  22. <script>
  23. var gitbook = gitbook || [];
  24. gitbook.push(function() {
  25. gitbook.page.hasChanged({%- include metadata-home.json.tpl -%});
  26. });
  27. </script>
  28. </div>
  29. {%- include footer.html -%}
  30. </body>
  31. </html>