summaryrefslogtreecommitdiff
path: root/contact.html.j2
blob: 2e38e0d955cf8a3c817a2fcc4f5c70c308fc4f98 (plain)
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
{% extends "common/base.j2" %}
{% block body_content %}

<div class="jumbotron">
  <div class="container text-center">
    <h1>{{ _("Contact information") }}</h1>
  </div>
</div>

<div class="container">
<div class="row">
  <div class="col-lg-6">
    <h2>{{ _("The mailing list") }}</h2>
      <p>
        {% trans %}
            An archived, public mailing list for GNU Taler is
            hosted at
            <a href="https://lists.gnu.org/mailman/listinfo/taler">https://lists.gnu.org/mailman/listinfo/taler</a>.  You can send messages to the list
            at <a href="mailto:taler@gnu.org">taler@gnu.org</a>.
        {% endtrans %}
      </p>
  </div>

  <div class="col-lg-6">
    <h2>{{ _("Contacting individuals") }}</h2>
    <p>
        {% trans %}
             Team members are generally reachable at
             <tt>LASTNAME@taler.net</tt>.  All of us
             support receiving GnuPG encrypted e-mails.
        {% endtrans %}
    </p>
  </div>

  <div class="col-lg-6">
    <h2>{{ _("Reporting bugs") }}</h2>
    <p>
        {% trans %}
             We track open feature requests and bugs in our
             <a href="https://gnunet.org/bugs/">Bug tracker</a>,
             which is shared with the GNUnet project.
             You can also report bugs or feature requests to the
             mailing list.
        {% endtrans %}
    </p>
  </div>

  <div class="col-lg-6">
    <h2>{{ _("Executive team") }}</h2>
    <p>
        {% trans %}
             For non-technical commercial requests, please contact
             <tt>ceo AT taler.net</tt>.
        {% endtrans %}
    </p>
  </div>
</div>
</div>
{% endblock body_content %}