2019-04-28 11:15:43 +00:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html lang="en" >
|
|
|
|
<head>
|
|
|
|
|
|
|
|
{%- include head.html -%}
|
|
|
|
|
|
|
|
{% if page.previous %}
|
2019-04-28 11:30:47 +00:00
|
|
|
<link rel="prev" href="{{site.baseurl}}{{page.previous.url}}" />
|
2019-04-28 11:15:43 +00:00
|
|
|
{% else %}
|
2019-04-28 11:30:47 +00:00
|
|
|
<link rel="prev" href="{{site.baseurl}}/" />
|
2019-04-28 11:15:43 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.next %}
|
2019-04-28 11:30:47 +00:00
|
|
|
<link rel="next" href="{{site.baseurl}}{{page.next.url}}" />
|
2019-04-28 11:15:43 +00:00
|
|
|
{% endif %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="book">
|
|
|
|
|
|
|
|
{%- include toc-date.html -%}
|
|
|
|
|
|
|
|
<div class="book-body">
|
|
|
|
{%- include body.html -%}
|
|
|
|
|
|
|
|
{% if page.previous %}
|
2019-04-28 11:30:47 +00:00
|
|
|
<a href="{{site.baseurl}}{{page.previous.url}}" class="navigation navigation-prev navigation-unique" aria-label="Previous page: {{page.previous.title}}">
|
2019-04-28 11:15:43 +00:00
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
|
|
|
{% else %}
|
2019-04-28 11:30:47 +00:00
|
|
|
<a href="{{site.baseurl}}/" class="navigation navigation-prev navigation-unique" aria-label="Previous page: {{site.title}}">
|
2019-04-28 11:15:43 +00:00
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.next %}
|
2019-04-28 11:30:47 +00:00
|
|
|
<a href="{{site.baseurl}}{{page.next.url}}" class="navigation navigation-next navigation-unique" aria-label="Next page: {{page.next.title}}">
|
2019-04-28 11:15:43 +00:00
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var gitbook = gitbook || [];
|
|
|
|
gitbook.push(function() {
|
|
|
|
gitbook.page.hasChanged({%- include metadata-post.json.tpl -%});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{%- include footer.html -%}
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|