mirror of
https://github.com/instaloader/instaloader.git
synced 2024-11-04 09:22:29 +01:00
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 %}
|