Article footer#
The article footer appears directly after page content. It’s empty by default, but you can inject custom actions, links, or messages (any HTML) by overriding Jinja blocks.
Customize article footer
The footer consists of two blocks: article_footer_left and article_footer_right.
See also
List of all Jinja templates and blocks you can override.
In
conf.pysettemplates_path = ["_templates"].Create
_templates/partials/article-footer.html.Extend the original template and override desired blocks. Example:
{% extends "!partials/article_footer.html" %} {% block article_footer_left %} Do you have a question? Ask on <a href="https://discord.gg/uaEa43HB">Discord</a> {% endblock %} {% block article_footer_right %} Edit this page on <a href="https://github.com/your-repo/{{ pagename }}.md?edit">GitHub</a> {% endblock %}