mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-19 17:15:24 +00:00
49 lines
2.2 KiB
HTML
49 lines
2.2 KiB
HTML
<div class="book-summary">
|
||
<div class="book-search">
|
||
<input type="text" placeholder="Search" class="form-control" />
|
||
</div>
|
||
<ul class="summary">
|
||
{% if githubId %}
|
||
<li>
|
||
<a href="{{ githubHost }}{{ githubAuthor }}" target="blank">About the author</a>
|
||
</li>
|
||
<li>
|
||
<a href="{{ githubHost }}{{ githubId }}/issues" target="blank">Questions and Issues</a>
|
||
</li>
|
||
<li>
|
||
<a href="{{ githubHost }}{{ githubId }}/edit/master/{{ _input }}" target="blank">Edit and Contribute</a>
|
||
</li>
|
||
<li class="divider"></li>
|
||
{% endif %}
|
||
<li data-level="0" data-path="index.html">
|
||
<a href="{{ basePath }}/"><i class="fa fa-check"></i> Introduction</a>
|
||
</li>
|
||
{% for item in summary.chapters %}
|
||
<li {% if item._path == _input %}class="active"{% endif %} data-level="{{ item.level }}" {% if item.path %}data-path="{{ item.path|mdLink }}"{% endif %}>
|
||
{% if item.path %}
|
||
<a href="{{ basePath }}/{{ item.path|mdLink }}">
|
||
<i class="fa fa-check"></i> <b>{{ item.level }}.</b> {{ item.title }}
|
||
</a>
|
||
{% else %}
|
||
<span><b>{{ item.level }}.</b> {{ item.title }}</span>
|
||
{% endif %}
|
||
{% if item.articles.length > 0 %}
|
||
<ul class="articles">
|
||
{% for article in item.articles %}
|
||
<li {% if article._path == _input %}class="active"{% endif %} data-level="{{ article.level }}" {% if article.path %}data-path="{{ article.path|mdLink }}"{% endif %}>
|
||
{% if article.path %}
|
||
<a href="{{ basePath }}/{{ article.path|mdLink }}">
|
||
<i class="fa fa-check"></i> <b>{{ article.level }}.</b> {{ article.title }}
|
||
</a>
|
||
{% else %}
|
||
<span><b>{{ article.level }}.</b> {{ article.title }}</span>
|
||
{% endif %}
|
||
</li>
|
||
{% endfor %}
|
||
</ul>
|
||
{% endif %}
|
||
</li>
|
||
{% endfor %}
|
||
</ul>
|
||
</div>
|