zephyr/doc/_templates/footer.html
Benjamin Cabé 4e132c2b42 doc: Rework footer
There is likely no need for the footer to be so prominently asking folks
to report issues with a page based on the number of issues that have
been reported in the past year or so.

This change makes the footer less crowded and saves some vertical space.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
2024-09-09 13:54:15 -04:00

19 lines
460 B
HTML

{% extends "!footer.html" %}
{% block contentinfo %}
<p>
{%- if show_copyright %}
&#169; Copyright {{ copyright }}.
{%- endif %}
{%- if last_updated %}
<div class="lastupdated">
Last generated: {{ last_updated }}.
{%- set git_last_updated, sha1 = pagename | git_info | default((None, None), true) %}
{%- if git_last_updated %}
Last source update: {{ git_last_updated }}.
{%- endif %}
</div>
{%- endif -%}
</p>
{% endblock %}