mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-21 01:53:26 +00:00
15 lines
464 B
HTML
15 lines
464 B
HTML
{% extends template.theme %}
|
|
|
|
{% block page %}
|
|
{{ super() }}
|
|
<hr>
|
|
<div class="btn-group btn-group-justified">
|
|
{% if page.previous and page.previous.path %}
|
|
<a class="btn" href="{{ page.previous.path|resolveFile }}"><b>Previous:</b> {{ page.previous.title }}</a>
|
|
{% endif %}
|
|
{% if page.next and page.next.path %}
|
|
<a class="btn" href="{{ page.next.path|resolveFile }}"><b>Next:</b> {{ page.next.title }}</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|