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 %}
|