summaryrefslogtreecommitdiffstats
path: root/templates/includes/book/summary.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/includes/book/summary.html')
-rw-r--r--templates/includes/book/summary.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/templates/includes/book/summary.html b/templates/includes/book/summary.html
deleted file mode 100644
index 996ff3d..0000000
--- a/templates/includes/book/summary.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<div class="book-summary">
- <ul class="summary">
- <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>
- <li data-level="0">
- <a href="{{ basePath }}/README.html"><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 %}
- <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 %}
- <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>