diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-09-30 14:16:48 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-09-30 14:16:48 +0200 |
commit | 2cf507a807b1070a445cadb28317a41385fbe50b (patch) | |
tree | fc022cc5e5f7cd9c7a16f01c2f76f7ef59a3d074 /docs | |
parent | 1489129407cfd4a562b3fb8f2799acb3b240ee6b (diff) | |
download | gitbook-2cf507a807b1070a445cadb28317a41385fbe50b.zip gitbook-2cf507a807b1070a445cadb28317a41385fbe50b.tar.gz gitbook-2cf507a807b1070a445cadb28317a41385fbe50b.tar.bz2 |
Base api to use i18n
Diffstat (limited to 'docs')
-rw-r--r-- | docs/_layouts/website/page.html | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/docs/_layouts/website/page.html b/docs/_layouts/website/page.html deleted file mode 100644 index 47954f7..0000000 --- a/docs/_layouts/website/page.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends template.self %} - -{% block header_nav %} -<a href="https://github.com/GitbookIO/gitbook/blob/master/docs/{{ file.path }}" target="_blank" class="btn btn-link pull-right hidden-xs"> - <i class="octicon octicon-mark-github"></i> Edit on GitHub -</a> -<a href="{{ "faq.md"|resolveFile }}" class="btn btn-link pull-right hidden-xs"> - F.A.Q -</a> -<a href="https://github.com/GitbookIO/gitbook/blob/master/CHANGES.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>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 %} |