diff options
Diffstat (limited to 'theme/templates/ebook/summary.html')
-rw-r--r-- | theme/templates/ebook/summary.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/theme/templates/ebook/summary.html b/theme/templates/ebook/summary.html index ab4b78f..9a67d28 100644 --- a/theme/templates/ebook/summary.html +++ b/theme/templates/ebook/summary.html @@ -8,7 +8,7 @@ <li> {% if item.path %} {% if !externalLink %} - <a href="{{ basePath }}/{{ item.path|mdLink }}">{{ item.title }}</a> + <a href="{{ basePath }}/{{ item.path|contentLink }}">{{ item.title }}</a> {% else %} <a target="_blank" href="{{ item.path }}">{{ item.title }}</a> {% endif %} @@ -17,7 +17,7 @@ {% endif %} {% if item.articles.length > 0 %} <ol> - {{ articles(item.articles) }} + {{ articles(item.articles) }} </ol> {% endif %} </li> |