1
1
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2026-05-29 14:49:15 +00:00
Files

30 lines
966 B
HTML
Raw Permalink Normal View History

2024-04-05 10:44:23 +00:00
<!--
SPDX-FileCopyrightText: 2024 Jonah Aragon <jonah@privacyguides.org>
2023-03-21 16:56:27 -05:00
SPDX-License-Identifier: MIT
2024-04-05 10:44:23 +00:00
-->
{% set copyright = config.extra.privacy_guides.footer %}
2023-10-04 15:02:24 -05:00
2024-04-05 10:44:23 +00:00
<!-- Copyright information -->
<div class="md-copyright">
{% if copyright %}
2024-04-08 15:20:31 -05:00
<div class="md-copyright__highlight" title="This version of Privacy Guides was built on {{ build_date_utc.strftime('%B %d, %Y at %I:%M%p') }}">
2024-04-05 10:44:23 +00:00
{{ copyright.intro }}
<br />
{{ copyright.note }}
<br />
<a href='/license' aria-label="More information about our website license.">
2024-04-05 10:44:23 +00:00
{% for icon in copyright.license %}
<span class="twemoji">{% include ".icons/" ~ icon ~ ".svg" %}</span>
{% endfor %}
</a>
{{ copyright.copyright.date }} {{ copyright.copyright.author }}
2025-03-03 17:52:01 -06:00
{% for link in copyright.links %}
<a href="{{ link.url }}">
<strong>{{ link.name }}</strong>
</a>
{% endfor %}
2022-05-30 23:03:09 -05:00
</div>
2024-04-05 10:44:23 +00:00
{% endif %}
</div>