15 lines
443 B
HTML
15 lines
443 B
HTML
{#
|
|
SPDX-License-Identifier: CC-BY-SA-4.0
|
|
#}
|
|
<footer>
|
|
<div id="signature">
|
|
{%- 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 %}
|
|
</div>
|
|
</footer>
|