diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/_layouts/website/page.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/_layouts/website/page.html b/docs/_layouts/website/page.html new file mode 100644 index 0000000..edce251 --- /dev/null +++ b/docs/_layouts/website/page.html @@ -0,0 +1,14 @@ +{% 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 %} |