mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-05 10:20:55 +00:00
Remove the proof-of-concept shell script that post-processes the generated HTML to add the git date when the corresponding .rst file as the last modified date, augmenting the existing published date. Instead, use a custom last_updated.py Sphinx extension that's integrated into the Sphinx build itself. Remove the old fix-git-modified-date.sh script and calls to it. Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
14 lines
526 B
HTML
14 lines
526 B
HTML
{% extends "!footer.html" %}
|
|
{% block contentinfo %}
|
|
<p>
|
|
{%- if show_copyright %}
|
|
{%- if hasdoc('copyright') %}
|
|
{%- trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
|
|
{%- else %}
|
|
{%- trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
|
|
<span class="lastupdated">Last updated on {{last_updated}}. Published on {{last_published}}</span>
|
|
{% endblock %}
|