-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (69 loc) · 3.29 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>diskuti - Online communication tools for grassroots communities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://libreops.cc/static/lib/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://libreops.cc/static/lib/fork-awesome/css/fork-awesome.min.css">
<link rel="stylesheet" href="https://libreops.cc/static/css/app.css">
<link rel="prefetch" type="application/l10n" href="static/locales.ini">
<link rel="shortcut icon" href="/favicon.ico">
</head>
<body>
<div class="page">
<div class="container">
<header class="py-3 text-center">
<a href="/"><img src="/static/img/diskuti.png" alt="diskuti" class="avatar"></a>
</header>
<div class="card w-75 mx-auto">
<div class="card-header" data-l10n-id="about-title">
about
<div class="pull-right">
<span id="lang-selection"><span class="fa fa-language pr-2"></span>
<select onchange="currentLang=this.value;document.webL10n.setLanguage(this.value || this.options[this.selectedIndex].text);" autocomplete="off">
<option id="lang-en" selected value="en">en</option>
<option id="lang-el" value="el">el</option>
</select>
</div>
</div>
<div class="card-body" data-l10n-id="about-text">
Diskuti is a public mailing list service.
Its purpose is to offer a mailing service to communities (projects, collectives, etc)
that don't have the resources or know-how to setup and maintain a mailing list.
</div>
</div>
<div class="card w-75 mx-auto mt-4">
<div class="card-header" data-l10n-id="comm-title">
request
</div>
<div class="card-body" data-l10n-id="comm-text">
<p>To request a new mailing list, to open a support ticket, send us an email.</p><p><i class="fa fa-envelope-o mr-1" aria-hidden="true"></i><img src="https://libreops.cc/static/img/email.svg"></p>
</div>
</div>
<div class="card w-75 mx-auto mt-4">
<div class="card-header" data-l10n-id="priv-title">
privacy
</div>
<div class="card-body" data-l10n-id="priv-text">
<p>
One of the motives for creating Diskuti was to build a mailing list service
that will keep a minimum amount of (meta)data and only the bare minimum that is required for its core functionality,
in respect to users privacy.
</p>
<p>
Therefor we don't keep list archives (unless the community moderators do want them). We also don't keep any access logs,
either for emails or for this website.
</p>
</div>
</div>
</div>
</div>
<div class="container">
<footer class="w-75 p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
<i class="fa fa-power-off" aria-hidden="true"></i> powered by <a href="https://libreops.cc" target="_blank">LibreOps</a>
</footer>
</div>
<script src="https://libreops.cc/static/lib/webl10n/l10n.js"></script>
</body>
</html>