aboutsummaryrefslogtreecommitdiff
path: root/template/contact.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'template/contact.html.j2')
-rw-r--r--template/contact.html.j261
1 files changed, 61 insertions, 0 deletions
diff --git a/template/contact.html.j2 b/template/contact.html.j2
new file mode 100644
index 00000000..aa74fcc5
--- /dev/null
+++ b/template/contact.html.j2
@@ -0,0 +1,61 @@
1{% extends "common/base.j2" %}
2{% block body_content %}
3
4<div class="jumbotron">
5 <div class="container text-center">
6 <h1>{{ _("Contact information") }}</h1>
7 </div>
8</div>
9
10<div class="container">
11<div class="row">
12 <div class="col-lg-6">
13 <h2>{{ _("The mailing list") }}</h2>
14 <p>
15 {% trans %}
16 An archived, public mailing list for GNUnet is
17 hosted at
18 <a href="https://lists.gnu.org/mailman/listinfo/gnunet-developers">https://lists.gnu.org/mailman/listinfo/gnunet-developers</a>. You can send messages to the list
19 at <a href="mailto:gnunet-developers@gnu.org">gnunet-developers@gnu.org</a>.
20 {% endtrans %}
21 </p>
22 </div>
23
24 <div class="col-lg-6">
25 <h2>{{ _("The IRC channel") }}</h2>
26 <p>
27 {% trans %}
28 #gnunet is reachable via irc.freenode.net. There is also an <a href="https://old.gnunet.org/bot/log/gnunet">archive</a> availabe.
29 {% endtrans %}
30 </p>
31 </div>
32</div>
33
34<div class="row">
35 <div class="col-lg-6">
36 <h2>{{ _("Contacting individuals") }}</h2>
37 <p>
38 {% trans %}
39 GNUnet developers are generally reachable at
40 <tt>PSEUDONYM@gnunet.org</tt>. Most of us
41 support receiving GnuPG encrypted Emails.
42 {% endtrans %}
43 </p>
44 </div>
45
46 <div class="col-lg-6">
47 <h2>{{ _("Reporting bugs") }}</h2>
48 <p>
49 {% trans %}
50 We track open feature requests and bugs for projects
51 within GNUnet in our
52 <a href="https://bugs.gnunet.org/">Bug tracker</a>.
53 You can also report bugs or feature requests to the
54 <a href="https://lists.gnu.org/mailman/listinfo/bug-gnunet">bug-gnunet</a>
55 mailing list. The mailinglist requires no subscription.
56 {% endtrans %}
57 </p>
58 </div>
59</div>
60</div>
61{% endblock body_content %}