aboutsummaryrefslogtreecommitdiff
path: root/template/applications.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'template/applications.html.j2')
-rw-r--r--template/applications.html.j2128
1 files changed, 128 insertions, 0 deletions
diff --git a/template/applications.html.j2 b/template/applications.html.j2
new file mode 100644
index 00000000..6a0108a2
--- /dev/null
+++ b/template/applications.html.j2
@@ -0,0 +1,128 @@
1{% extends "common/base.j2" %}
2{% block body_content %}
3<div class="container-fluid">
4 <div class="container">
5 <div class="row">
6 <div class="container text-center">
7 <h1>{{ _("Featured Applications") }}</h1>
8 </div>
9 </div>
10 <div class="row">
11 <div class="col-lg-4">
12 <section>
13 <h3>{{ _("GNU Taler (Alpha)") }}</h3>
14 <p>
15 {% trans %}
16 <a href="https://taler.net/">GNU Taler</a>
17 is a new privacy-preserving electronic payment system.
18 Payments are cryptographically
19 secured and are confirmed within milliseconds with
20 extremely low transaction costs.
21 {% endtrans %}
22 </p>
23 </section>
24 </div>
25 <div class="col-lg-4">
26 <section>
27 <h3>{{ _("The GNU Name System") }}</h3>
28
29 <p>
30 {% trans %}
31 The <a href="https://gnunet.org/en/gns.html">GNU Name System (GNS)</a>
32 is a fully decentralized replacement
33 for the Domain Name System (DNS). Instead of using a
34 hierarchy, GNS uses a directed graph. Naming conventions
35 are similar to DNS, but queries and replies are private even
36 with respect to peers providing the answers. The integrity of
37 records and privacy of look-ups is cryptographically secured.
38 <!-- Too technical: GNS integrates
39 a robust, efficient and instant key revocation mechanism. -->
40 {% endtrans %}
41 </p>
42 </section>
43 </div>
44 <div class="col-lg-4">
45 <section>
46 <h3>{{ _("re:claimID") }}</h3>
47 <p>
48 {% trans %}
49 <a href="https://reclaim-identity.io/">re:claimID</a>
50 is a decentralized Identity Provider (IdP) service built in top of the
51 GNU Name System. It allows users to securely share personal information
52 with websites using standardized protocols (OpenID Connect).
53 {% endtrans %}
54 </p>
55 </section>
56 </div>
57 </div>
58 <div class="row">
59 <div class="col-lg-4">
60 <section>
61 <h3>{{ _("Filesharing (Alpha)") }}</h3>
62 <p>
63 {% trans %}
64 GNUnet <a href="use.html#fs">filesharing</a>
65 is an application that aims to provide
66 censorship-resistant, anonymous filesharing. The publisher is
67 empowered to make a gradual choice between performance and anonymity.
68 {% endtrans %}
69 </p>
70 </section>
71 </div>
72 <div class="col-lg-4">
73 <section>
74 <h3>{{ _("Conversation (Pre-Alpha)") }}</h3>
75 <p>
76 {% trans %}
77 GNUnet conversation is an application that provides secure
78 voice communication in a fully decentralized way by employing
79 GNUnet for routing and transport.
80 {% endtrans %}
81 </p>
82 </section>
83 </div>
84 </div>
85 </div>
86</div>
87
88<div class="container-fluid c_acronym link-white bluebox">
89 <div class="container">
90 <div class="row">
91 <div class="container text-center">
92 <h1>{{ _("Upcoming Applications") }}</h1>
93 </div>
94 </div>
95 <div class="row">
96 <div class="col-lg-6">
97 <section>
98 <h3>{{ _("secushare") }}</h3>
99 <p>
100 {% trans %}
101 <a href="https://secushare.org/">secushare</a>
102 is creating a decentralized social networking
103 application on top of GNUnet. Using overlay
104 multicast and the extensible PSYC protocol, notifications are
105 distributed end-to-end encrypted to authorized recipients only.
106 {% endtrans %}
107 </p>
108 </section>
109 </div>
110 <div class="col-lg-6">
111 <section>
112 <h3>{{ _("pretty Easy privacy") }}</h3>
113 <p>
114 {% trans %}
115 <a href="https://pep.foundation/">pretty Easy privacy</a> (p&#8801;p)
116 is creating a usable end-to-end encrypted e-mail solution using
117 opportunistic key exchange.
118 p&#8801;p will use GNUnet to protect metadata and exploit new
119 cryptographic protocols to verify keys.
120 {% endtrans %}
121 </p>
122 </section>
123 </div>
124 </div>
125 </div>
126</div>
127
128{% endblock body_content %}