diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-04 10:45:36 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-04 10:45:36 -0700 |
commit | e0d96b316390660557c1eac72314cdd659ba58e0 (patch) | |
tree | 631a24d35b4b0c81ffefc51686525cbd7f26feed /templates/layout.html | |
parent | f656390783922952cc1f6fe8b0a5d0dc902fa92e (diff) | |
download | gitbook-e0d96b316390660557c1eac72314cdd659ba58e0.zip gitbook-e0d96b316390660557c1eac72314cdd659ba58e0.tar.gz gitbook-e0d96b316390660557c1eac72314cdd659ba58e0.tar.bz2 |
Fix links in templates
Diffstat (limited to 'templates/layout.html')
-rw-r--r-- | templates/layout.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/layout.html b/templates/layout.html index c0f52cb..47184b3 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -13,10 +13,10 @@ <meta name="generator" content="www.gitbook.io"> {% if progress.current.next and progress.current.next.path %} - <link rel="next" href="{{ basePath }}/{{ progress.current.next.path }}" /> + <link rel="next" href="{{ basePath }}/{{ progress.current.next.path|mdLink }}" /> {% endif %} {% if progress.current.prev and progress.current.prev.path %} - <link rel="prev" href="{{ basePath }}/{{ progress.current.prev.path }}" /> + <link rel="prev" href="{{ basePath }}/{{ progress.current.prev.path|mdLink }}" /> {% endif %} <meta property="og:title" content="{% block title %} | {{ title }}{% endblock %}"> |