12345678910111213141516171819 |
- {#
- basic/relations.html
- ~~~~~~~~~~~~~~~~~~~~
- Sphinx sidebar template: relation links.
- :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
- :license: BSD, see LICENSE for details.
- #}
- {%- if prev %}
- <h3>{{ _('Previous topic') }}</h3>
- <p class="topless">← <a href="{{ prev.link|e }}"
- title="{{ _('previous chapter') }}">{{ prev.title }}</a></p>
- {%- endif %}
- {%- if next %}
- <h3>{{ _('Next topic') }}</h3>
- <p class="topless">→ <a href="{{ next.link|e }}"
- title="{{ _('next chapter') }}">{{ next.title }}</a></p>
- {%- endif %}
|