4c29410efa
Signed-off-by: HE, Tao <sighingnow@gmail.com>
41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE HTML>
|
|
<html lang="en" >
|
|
<head>
|
|
|
|
{%- include head.html -%}
|
|
|
|
{% assign reversed_posts = site.posts | reverse %}
|
|
|
|
{% if reversed_posts %}
|
|
<link rel="next" href="{{reversed_posts.first.url}}" />
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
<div class="book">
|
|
|
|
{%- include toc-date.html -%}
|
|
|
|
<div class="book-body">
|
|
{%- include body.html -%}
|
|
|
|
{% if reversed_posts %}
|
|
<a href="{{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>
|
|
|
|
<!-- {%- include search.html -%} -->
|
|
|
|
<script>
|
|
var gitbook = gitbook || [];
|
|
gitbook.push(function() {
|
|
gitbook.page.hasChanged({%- include metadata-home.json.tpl -%});
|
|
});
|
|
</script>
|
|
</div>
|
|
|
|
{%- include footer.html -%}
|
|
|
|
</body>
|
|
</html> |