diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-01 02:36:36 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-01 02:36:36 -0700 |
commit | ca2d499f6375ca83d28b2b8947f00a5518d3a91d (patch) | |
tree | 631f6222f5363531423c5e079af73101cc39b6d0 /templates | |
parent | b30132d8c850a70769b7e9a94166b8753adaf21b (diff) | |
download | gitbook-ca2d499f6375ca83d28b2b8947f00a5518d3a91d.zip gitbook-ca2d499f6375ca83d28b2b8947f00a5518d3a91d.tar.gz gitbook-ca2d499f6375ca83d28b2b8947f00a5518d3a91d.tar.bz2 |
Change style of bottom navigation
Diffstat (limited to 'templates')
-rw-r--r-- | templates/page.html | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/templates/page.html b/templates/page.html index b257da0..ffebbfd 100644 --- a/templates/page.html +++ b/templates/page.html @@ -33,18 +33,15 @@ </div> <div class="page-footer"> - <div class="navigation"> {% if _input == "README.md" %} <a href="{{ basePath }}/{{ navigation.next.path }}" class="navigation-link">Start this book</a> {% else %} - {% if navigation.prev %} - <a href="{{ basePath }}/{{ navigation.prev.path }}" class="navigation-link prev"><i class="fa fa-chevron-left"></i> <span>{{ navigation.prev.title }}</span></a> - {% endif %} {% if navigation.next %} - <a href="{{ basePath }}/{{ navigation.next.path }}" class="navigation-link next"><span>{{ navigation.next.title }}</span> <i class="fa fa-chevron-right"></i></a> + <a href="{{ basePath }}/{{ navigation.next.path }}" class="navigation-link next">Next: <span>{{ navigation.next.title }}</span></a> + {% else %} + <div class="navigation-link finished">Finished!</div> {% endif %} {% endif %} - </div> </div> </div> </div> |