diff options
-rw-r--r-- | _layouts/post.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 9195f13..364b76c 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -21,13 +21,16 @@ sidebar: <div class="post-nav"> {%- if page.previous -%} - <a class="previous" href="{{ page.previous.url }}" title="{{ page.previous.title | escape }}">{{ page.previous.title | escape }}</a> + <a class="previous" href="{{ page.previous.url }}" title="{{ + page.previous.title | escape }}">{{ page.previous.title | escape | + truncatewords: 6 }}</a> {%- else -%} <span></span> {%- endif -%} {%- if page.next -%} - <a class="next" href="{{ page.next.url }}" title="{{ page.next.title | escape }}">{{ page.next.title | escape }}</a> + <a class="next" href="{{ page.next.url }}" title="{{ page.next.title | + escape }}">{{ page.next.title | escape | truncatewords: 6 }}</a> {%- else -%} <span></span> {%- endif -%} |