-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
instances.njk
32 lines (26 loc) · 1.65 KB
/
instances.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
title: Public instances
description: Find an instance that suits your needs
layout: layouts/main
---
{% import "components/cards.njk" as cards %}
<section>
<h1>CryptPad Instances</h1>
<p class="left-aligned">CryptPad is open-source so anyone can install and offer the service. This page lists instances that are open to the public.</p>
{{ cards.instance(
title="CryptPad.fr",
url="https://cryptpad.fr",
description="The flagship instance that is hosted and administrated by the CryptPad development team. Additional storage space and priority support are available as part of subscription plans that fund the project's development.",
location="France"
)}}
<p class="left-aligned">The CryptPad instances listed below are third-party services, they are not affiliated with the development team in any capacity. In order to be listed here these services have passed a series of checks to ensure they use an up-to-date version of CryptPad and have the recommended security and privacy settings. You can check their realtime availability with <a href="https://uptime.cryptpad.org/status/public-instances">our dedicated status page</a>. Requests for support should be directed to their administrators.</p>
<p><a href="https://docs.cryptpad.fr/en/admin_guide/admin_panel.html#list-my-instance-in-public-directories">Learn how to have your instance included in this list</a>.</p>
</section>
{% for instance in instances | shuffle %}
{{ cards.instance(
title=instance.title,
url=instance.url,
description=instance.description,
location=instance.location
)}}
{% endfor %}