summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/includes/book/summary.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/includes/book/summary.html b/templates/includes/book/summary.html
index 8b2473e..65fd398 100644
--- a/templates/includes/book/summary.html
+++ b/templates/includes/book/summary.html
@@ -9,12 +9,12 @@
<li class="divider"></li>
{% for item in summary.chapters %}
<li>
- <a href="/book/{{ book.attributes.full_name }}/{{ item.chapter.path }}">{{ item.chapter.title }}</a>
+ <a href="{{ item.chapter.path }}">{{ item.chapter.title }}</a>
{% if item.articles.length > 0 %}
<ul class="articles">
{% for article in item.articles %}
<li>
- <a href="/book/{{ book.attributes.full_name }}/{{ article.path }}">{{ article.title }}</a>
+ <a href="{{ article.path }}">{{ article.title }}</a>
</li>
{% endfor %}
</ul>