mirror of
https://github.com/instaloader/instaloader.git
synced 2024-11-04 09:22:29 +01:00
39bd7c55f6
This makes it easier to go through the documentation and it pushes readthedocs's advertising further apart from the content.
11 lines
217 B
HTML
11 lines
217 B
HTML
{% extends "!page.html" %}
|
|
{% block body %}
|
|
{{ super() }}
|
|
{% if next and prev %}
|
|
<h2>Next Section</h2>
|
|
<p>
|
|
<a class="reference internal" href="{{ next.link|e }}">{{ next.title }}</a>
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|