Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions alabaster/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,17 @@
{%- block footer %}
<div class="footer">
{% if show_copyright %}&#169;{{ copyright }}.{% endif %}
{% if show_sphinx %}
{% if last_updated %}
{% if show_copyright %}|{% endif %}
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}{% endtrans %}
{% endif %}
{% if show_sphinx %}
{% if last_updated or show_copyright %}|{% endif %}
Powered by <a href="https://www.sphinx-doc.org/">Sphinx {{ sphinx_version }}</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster {{ alabaster_version }}</a>
{% endif %}
{%- if show_source and has_source and sourcename %}
{% if show_copyright or show_sphinx %}|{% endif %}
{% if last_updated or show_copyright or show_sphinx %}|{% endif %}
<a href="{{ pathto('_sources/' + sourcename, resource=True)|e }}"
rel="nofollow">{{ _('Page source') }}</a>
{%- endif %}
Expand Down