mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-23 19:06:31 +00:00
39 lines
1019 B
HTML
39 lines
1019 B
HTML
{% extends "./page.html" %}
|
|
|
|
{% block title %}Table of Contents | {{ title }}{% endblock %}
|
|
|
|
{% macro articles(_articles) %}
|
|
{% for item in _articles %}
|
|
<li>
|
|
{% if item.path %}
|
|
{% if item.external %}
|
|
<a href="{{ basePath }}/{{ item.path|contentLink }}">{{ item.title }}</a>
|
|
{% else %}
|
|
<a target="_blank" href="{{ item.path }}">{{ item.title }}</a>
|
|
{% endif %}
|
|
{% else %}
|
|
{{ item.title }}
|
|
{% endif %}
|
|
{% if item.articles.length > 0 %}
|
|
<ol>
|
|
{{ articles(item.articles) }}
|
|
</ol>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
{% endmacro %}
|
|
|
|
{% block content %}
|
|
<div class="page page-toc">
|
|
<h1>Table of Contents</h1>
|
|
<ol>
|
|
{{ articles(summary.chapters) }}
|
|
|
|
{% if glossary.length > 0 %}
|
|
<li><a href="{{ basePath }}/GLOSSARY.html">Glossary</a></li>
|
|
{% endif %}
|
|
</ol>
|
|
</div>
|
|
{% endblock %}
|
|
|