68 lines
2.9 KiB
HTML
68 lines
2.9 KiB
HTML
{#
|
|
Copyright (C) 2022 Savoir-faire Linux Inc.
|
|
|
|
Copying and distribution of this file, with or without modification,
|
|
are permitted in any medium without royalty provided the copyright
|
|
notice and this notice are preserved. This file is offered as-is,
|
|
without any warranty.
|
|
|
|
The main purpose of this file is to enable use of a custom format
|
|
for the copyright statement in page footers, and is based on the
|
|
footer.html file from the Read the Docs Sphinx Theme project, under
|
|
the Expat License (also referred to as the "MIT License"), per the
|
|
following notice:
|
|
|
|
Copyright (c) 2013-2018 Dave Snider, Read the Docs, Inc. & contributors
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
a copy of this software and associated documentation files (the
|
|
"Software"), to deal in the Software without restriction, including
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
#}
|
|
|
|
{% extends '!footer.html' %}
|
|
{% block contentinfo %}
|
|
{%- if show_copyright and pagename != 'fdl' %}
|
|
{%- if hasdoc('copyright') %}
|
|
{%- trans path=pathto('copyright'), copyright=copyright|e %}<p><a href="{{ path }}">Copyright</a> © {{ copyright }}</p>{% endtrans %}
|
|
{%- else %}
|
|
{%- trans copyright=copyright|e %}<p>Copyright © {{ copyright }}</p>{% endtrans %}
|
|
{%- endif %}
|
|
<p>Permission is granted to copy, distribute and/or modify this document
|
|
under the terms of the <a href="fdl.html">GNU Free Documentation License</a>,
|
|
Version 1.3 or any later version published by the Free Software Foundation;
|
|
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.</p>
|
|
{%- endif %}
|
|
<p>{%- if build_id and build_url %}
|
|
<span class="build">
|
|
{#- Translators: Build is a noun, not a verb -#}
|
|
{%- trans %}Build{% endtrans -%}
|
|
<a href="{{ build_url }}">{{ build_id }}</a>.
|
|
</span>
|
|
{%- elif commit %}
|
|
<span class="commit">
|
|
{#- Translators: the phrase "revision" comes from Git, referring to a commit #}
|
|
{%- trans %}Revision{% endtrans %} <code>{{ commit }}</code>.
|
|
</span>
|
|
{%- endif %}
|
|
{%- if last_updated %}
|
|
<span class="lastupdated">
|
|
{%- trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
|
|
</span>
|
|
{%- endif -%}</p>
|
|
{% endblock %}
|