-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlegal.html
More file actions
21 lines (20 loc) · 877 Bytes
/
legal.html
File metadata and controls
21 lines (20 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<span class="copyright">
<span class="copyright-head">Copyright © {{ site.time | date: '%Y' }} {{ site.legal.name }} —</span>
<span class="copyright-tail">All rights reserved.</span>
</span>
{% if site.legal.privacy_policy_link or site.legal.tos_link %}
<nav aria-label="legal links">
<strong><a href="/docs/">Manual</a></strong>
<strong><a href="/contribute/">Contribute</a></strong>
{% if site.legal.tos_link %}
<a href="{{ site.legal.tos_link }}">Terms of service</a>
{% endif %}
{% if site.legal.privacy_policy_link %}
<a href="{{ site.legal.privacy_policy_link }}">Privacy policy</a>
{% endif %}
<a href="/feedback/">Feedback/bug reports</a>
<a href="/advisories/">Security advisories</a>
<a href="/openpgp_keys/">OpenPGP keys</a>
<a href="/about/">About</a>
</nav>
{% endif %}