All checks were successful
Build and Deploy Static Site / build (push) Successful in 1m7s
Renames the PGP key file to match the email address format, ensuring consistency across asset references. Updates HTML templates to reflect the new file name, maintaining correct links for PGP key access.
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Legal Notice{% endblock title %}
|
|
{% block content %}
|
|
<section>
|
|
<div class="container py-5">
|
|
<div class="row align-items-center">
|
|
<div class="col">
|
|
<p class="text-end special-header fancy-text-primary mb-0">Legal Notice</p>
|
|
</div>
|
|
<div class="col">
|
|
<p class="text-start mb-1" style="font-size: 1.6rem">
|
|
from the <strong>community</strong>
|
|
</p>
|
|
<p class="text-start mb-0" style="font-size: 1.6rem">
|
|
for the <strong>community</strong>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<p>This is a legal notice for the website private.coffee</p>
|
|
<p>The website private.coffee is run by the following entity:</p>
|
|
<address>
|
|
Private.coffee ‐ Verein zur Förderung von Privatsphäre und
|
|
digitaler Souveränität
|
|
<br />
|
|
c/o Klaus-Uwe Mitterer
|
|
<br />
|
|
Gartengasse 22/7/3
|
|
<br />
|
|
8010 Graz
|
|
<br />
|
|
Austria
|
|
<br />
|
|
</address>
|
|
<p>Central Register of Associations (ZVR) Number: 1758485319</p>
|
|
<p>
|
|
Email:
|
|
<a href="mailto:support@private.coffee">support@private.coffee</a>
|
|
(PGP key: <a href="{{ relative_path }}assets/support@private.coffee.asc">F262CF22D540CDBB90D7A82BA5F5E7AA321941FA</a>)
|
|
</p>
|
|
<p>
|
|
For security-related issues, please see <a href="https://security.private.coffee/">our security page</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock content %}
|