relations.html 689 B

12345678910111213141516171819202122
  1. {# Changes to the original: capitalized 'Documentation Overview' #}
  2. <div class="relations">
  3. <h3>Related Topics</h3>
  4. <ul>
  5. <li><a href="{{ pathto(master_doc) }}">Documentation Overview</a><ul>
  6. {%- for parent in parents %}
  7. <li><a href="{{ parent.link|e }}">{{ parent.title }}</a><ul>
  8. {%- endfor %}
  9. {%- if prev %}
  10. <li>Previous: <a href="{{ prev.link|e }}" title="{{ _('previous chapter')
  11. }}">{{ prev.title }}</a></li>
  12. {%- endif %}
  13. {%- if next %}
  14. <li>Next: <a href="{{ next.link|e }}" title="{{ _('next chapter')
  15. }}">{{ next.title }}</a></li>
  16. {%- endif %}
  17. {%- for parent in parents %}
  18. </ul></li>
  19. {%- endfor %}
  20. </ul></li>
  21. </ul>
  22. </div>