Вы должны расширить макет по умолчанию, предоставив HTML-файл, подобный следующему:
{% extends '!layout.html' %}
{% block footer %}
<!-- your html code here -->
{% endblock %}
Сохраните это в подкаталоге _templates/
как layout.html
и обязательно сообщите conf.py
, где найти этот каталог:
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Более подробную информацию о шаблонах можно найти здесь: http://sphinx.pocoo.org/templating.html