1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE HTML>
- <html lang="en" >
- <head>
- {%- include head.html -%}
- {% assign reversed_posts = site.posts | reverse %}
- {% if reversed_posts %}
- <link rel="next" href="{{site.baseurl}}{{reversed_posts.first.url}}" />
- {% endif %}
- </head>
- <body>
- <div class="book">
- {%- include toc-date.html -%}
- <div class="book-body">
- <div class="book-header" role="navigation">
- <!-- Title -->
- <h1>
- <i class="fa fa-circle-o-notch fa-spin"></i>
- {% if page.title %}
- <a href="." >{{ page.title | escape }}</a>
- {% else %}
- <a href="." >{{ site.title | escape }}</a>
- {% endif %}
- </h1>
- </div>
- <div class="body-inner">
- {%- include body.html -%}
- {% if reversed_posts %}
- <a href="{{site.baseurl}}{{reversed_posts.first.url}}" class="navigation navigation-next navigation-unique" aria-label="Next page: {{reversed_posts.first.title}}">
- <i class="fa fa-angle-right"></i>
- </a>
- {% endif %}
- </div>
- </div>
- <script>
- var gitbook = gitbook || [];
- gitbook.push(function() {
- gitbook.page.hasChanged({%- include metadata-home.json.tpl -%});
- });
- </script>
- </div>
- {%- include footer.html -%}
- </body>
- </html>
|