aboutsummaryrefslogtreecommitdiff
path: root/template/contact.html.j2
blob: adf5691d73c559b560947c73880761eee1eff885 (plain) (blame)
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
{% extends "common/base.j2" %}
{% block body_content %}
<article class="container">

  <header>
    <h1>{{ _("Contact information") }}</h1>
  </header>

  <div class="row">
    <div class="col-lg-6">
      <h2>{{ _("The mailing list") }}</h2>
        <p>
          {% trans %}
              An archived, public mailing list for GNUnet is
              hosted at
              <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
              at <a href="mailto:gnunet-developers@gnu.org">gnunet-developers@gnu.org</a>.
          {% endtrans %}
        </p>
    </div>

    <div class="col-lg-6">
      <h2>{{ _("The IRC channel") }}</h2>
        <p>
          {% trans %}
            <tt>#gnunet</tt> is reachable via
            <a href="https://freenode.net">irc.freenode.net</a>.
            There is also an
            <a href="https://old.gnunet.org/bot/log/gnunet">archive</a>
            available (currently unavailable, we are working on restoring access to it).
          {% endtrans %}
        </p>
    </div>
  </div>

  <div class="row">
    <div class="col-lg-6">
      <h2>{{ _("Contacting individuals") }}</h2>
      <p>
          {% trans %}
            GNUnet developers are generally reachable at
            either <tt>PSEUDONYM@gnunet.org</tt> or
            <tt>LASTNAME@gnunet.org</tt>.  Most of us
            support receiving GnuPG encrypted Emails.
          {% endtrans %}
      </p>
    </div>

    <div class="col-lg-6">
      <h2>{{ _("Reporting bugs") }}</h2>
      <p>
          {% trans %}
               We track open feature requests and bugs for projects
               within GNUnet in our
               <a href="https://bugs.gnunet.org/">Bug tracker</a>.
               You can also report bugs or feature requests to the
               <a href="https://lists.gnu.org/mailman/listinfo/bug-gnunet">bug-gnunet</a>
               mailing list.  The mailinglist requires no subscription.
          {% endtrans %}
      </p>
    </div>
  </div>
</article>
{% endblock body_content %}