mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- This is completely reworked but based on /Developer page in the FreedomBox Manual. - This documentation can be made available as static site on https://docs.freedombox.org and the /Developer page in the FreedomBox Manual can be dropped. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
16 lines
536 B
HTML
16 lines
536 B
HTML
{%- extends "alabaster/layout.html" %}
|
|
|
|
{%- block footer %}
|
|
<div class="footer">
|
|
{% if show_copyright %}©{{ copyright }} | {% endif %}
|
|
Licensed under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">
|
|
CC BY-SA 4.0</a> license
|
|
{%- if show_source and has_source and sourcename %}
|
|
{% if show_copyright or theme_show_powered_by %}|{% endif %}
|
|
<a href="{{ pathto('_sources/' + sourcename, true)|e }}"
|
|
rel="nofollow">{{ _('Page source') }}</a>
|
|
{%- endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|