提交 accd5b95 编写于 作者: rj2015's avatar rj2015

删除 page.html

上级 31f26e31
{% extends template.self %}
{% block body %}
<div class="book">
<div class="header-inner">
<!-- LOGO -->
<div class="logo"></div>
<span class="title"></span>
<!-- Search -->
{% block search_input %}{% endblock %}
<!-- Nav -->
<ul class="header-nav">
{% for nav in book.themeFexa.nav -%}
<li>
<a href="{{nav.url}}" target="{{ nav.target}}">{{ nav.name }}</a>
</li>
{%- endfor %}
</ul>
</div>
<div class="book-summary">
<div class="book-summary-title">文档目录</div>
{% block book_sidebar %}
{% block book_summary %}
<nav role="navigation">
{% include "website/summary.html" %}
</nav>
{% endblock %}
{% endblock %}
</div>
<!-- Content nav -->
<div class="book-anchor">
<div class="book-anchor-title">在这篇文章中:</div>
<div class="book-anchor-body">
</div>
</div>
<div class="book-body">
{% block book_body %}
<div class="body-inner">
{% block book_inner %}
{% include "website/header.html" %}
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
{% block search_results %}
<section class="normal markdown-section">
{% block page %}
{{ page.content|safe }}
{% endblock %}
</section>
{% endblock %}
</div>
</div>
{% endblock %}
</div>
{% block book_navigation %}
{% if page.previous and page.previous.path %}
<a href="{{ page.previous.path|resolveFile }}{{ page.previous.anchor }}" class="navigation navigation-prev {% if not (page.next and page.next.path) %}navigation-unique{% endif %}" aria-label="Previous page: {{ page.previous.title }}">
<i class="fa fa-angle-left"></i>
</a>
{% endif %}
{% if page.next and page.next.path %}
<a href="{{ page.next.path|resolveFile }}{{ page.next.anchor }}" class="navigation navigation-next {% if not (page.previous and page.previous.path) %}navigation-unique{% endif %}" aria-label="Next page: {{ page.next.title }}">
<i class="fa fa-angle-right"></i>
</a>
{% endif %}
{% endblock %}
{% endblock %}
</div>
<script>
var gitbook = gitbook || [];
gitbook.push(function() {
gitbook.page.hasChanged({{ template.getJSContext()|dump|safe }});
});
</script>
</div>
{% endblock %}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册