diff options
Diffstat (limited to 'templates/includes/book/summary.html')
-rw-r--r-- | templates/includes/book/summary.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/includes/book/summary.html b/templates/includes/book/summary.html index e9264b2..41586b7 100644 --- a/templates/includes/book/summary.html +++ b/templates/includes/book/summary.html @@ -13,14 +13,14 @@ {% for item in summary.chapters %} <li {% if item._path == _input %}class="active"{% endif %} data-level="{{ item.level }}"> <a href="{{ basePath }}/{{ item.path }}"> - <i class="fa fa-check"></i> {{ item.title }} + <i class="fa fa-check"></i> <b>{{ item.level }})</b> {{ item.title }} </a> {% 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 }}"> <a href="{{ basePath }}/{{ article.path }}"> - <i class="fa fa-check"></i> {{ article.title }} + <i class="fa fa-check"></i> <b>{{ article.level }})</b> {{ article.title }} </a> </li> {% endfor %} |