diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-06-02 14:49:40 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-06-02 14:49:40 +0200 |
commit | 718692de3b4725caa41a7c2371acf634d149e5f7 (patch) | |
tree | 044a6ba023ed318d642e5be4ce48c307c43f128b /theme | |
parent | 9856a51255fd3cc541f3d7c5ad03abdfc3e4fc42 (diff) | |
download | gitbook-718692de3b4725caa41a7c2371acf634d149e5f7.zip gitbook-718692de3b4725caa41a7c2371acf634d149e5f7.tar.gz gitbook-718692de3b4725caa41a7c2371acf634d149e5f7.tar.bz2 |
Langs index page now use direct link to html file
Diffstat (limited to 'theme')
-rwxr-xr-x | theme/templates/langs.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/templates/langs.html b/theme/templates/langs.html index 21bf64f..e1118c9 100755 --- a/theme/templates/langs.html +++ b/theme/templates/langs.html @@ -10,7 +10,7 @@ <ul class="languages"> {% for lang in langs %} <li> - <a href="{{ basePath}}/{{ lang.path }}">{{ lang.title }}</a> + <a href="{{ basePath}}/{{ lang.path|pathJoin("/index.html") }}">{{ lang.title }}</a> </li> {% endfor %} </ul> |