page.html 961 B

1234567891011121314151617181920212223242526
  1. {% extends template.self %}
  2. {% block header_nav %}
  3. <a href="https://github.com/GitbookIO/gitbook/blob/master/docs/{{ file.path }}" target="_blank" class="btn btn-link pull-right hidden-xs">
  4. <i class="octicon octicon-mark-github"></i> Edit on GitHub
  5. </a>
  6. <a href="{{ "faq.md"|resolveFile }}" class="btn btn-link pull-right hidden-xs">
  7. F.A.Q
  8. </a>
  9. <a href="https://github.com/GitbookIO/gitbook/blob/master/CHANGES.md" target="_blank" class="btn btn-link pull-right hidden-xs">
  10. {{ book.version }}
  11. </a>
  12. {% endblock %}
  13. {% block page %}
  14. {{ super() }}
  15. <hr>
  16. <div class="btn-group btn-group-justified">
  17. {% if page.previous and page.previous.path %}
  18. <a class="btn" href="{{ page.previous.path|resolveFile }}"><b>Previous:</b> {{ page.previous.title }}</a>
  19. {% endif %}
  20. {% if page.next and page.next.path %}
  21. <a class="btn" href="{{ page.next.path|resolveFile }}"><b>Next:</b> {{ page.next.title }}</a>
  22. {% endif %}
  23. </div>
  24. {% endblock %}