1234567891011121314151617181920212223242526 |
- {% extends template.self %}
- {% block header_nav %}
- <a href="https://github.com/seamong/myBlogs/blob/doc/{{ file.path }}" target="_blank" class="btn btn-link pull-right hidden-xs">
- <i class="octicon octicon-mark-github"></i> 在GitHub编辑本页
- </a>
- <a href="{{ "faq.md"|resolveFile }}" class="btn btn-link pull-right hidden-xs">
- F.A.Q
- </a>
- <a href="https://github.com/seamong/myBlogs/README.md" target="_blank" class="btn btn-link pull-right hidden-xs">
- 当前版本{{ book.version }}
- </a>
- {% endblock %}
- {% 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>上一页:</b> {{ page.previous.title }}</a>
- {% endif %}
- {% if page.next and page.next.path %}
- <a class="btn" href="{{ page.next.path|resolveFile }}"><b>下一页:</b> {{ page.next.title }}</a>
- {% endif %}
- </div>
- {% endblock %}
|