summaryrefslogtreecommitdiff
path: root/template/contact.html.j2
blob: 079b9ea066d4e4971acc4d6f979ed331a8637a60 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{% extends "common/base.j2" %}
{% block body_content %}
<main id="maincontent">
  <div class="jumbotron">
    <div class="container text-center">
      <h1>{{ _("Contact Overview") }}</h1>
    </div>
  </div>

  <div class="container">
    <div class="row">
      <div class="col-lg-6">
        <h2>{{ _("GNU Taler Mailing List") }}</h2>
        <p>
          {% trans %}
            A public mailing list for GNU Taler is hosted at
          <a href="https://lists.gnu.org/mailman/listinfo/taler" target="_blank" rel="noopener noreferrer">https://lists.gnu.org/mailman/listinfo/taler</a>, 
          <a href="https://lists.gnu.org/archive/html/taler/" target="_blank" rel="noopener noreferrer">archived here</a>.
            You can send messages to the list via email to
          <a href="mailto:taler'AT'gnu.org">taler'AT'gnu.org</a>.{% endtrans %}
        </p>
      </div>

      <div class="col-lg-6">
        <h2>{{ _("General Inquiries") }}</h2>
        <p>
          {% trans %}
            You can reach a group of team members handling general inquiries by sending emails to 
            <a href="mailto:contact'AT'taler.net">contact'AT'taler.net</a>.
          {% endtrans %}
        </p>
      </div>

      <div class="col-lg-6">
        <h2>{{ _("Reporting Bugs") }}</h2>
        <p>
          {% trans %}
            We track open feature requests and bugs in our
          {% endtrans %}
          <a href="https://bugs.taler.net/" target="_blank" rel="noopener noreferrer">{{ _("Bug tracker") }}</a>,
          {% trans %}
            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>{{ _("Contacting Individuals") }}</h2>
        <p>
          {% trans %}
            Team members are generally reachable at
            <tt>LASTNAME AT taler.net</tt>. All of us
            support receiving GnuPG encrypted e-mails.
          {% endtrans %}
        </p>
      </div>

      <div class="col-lg-6">
        <h2>{{ _("Chat") }}</h2>
        <p>
          {% trans %}
            We frequently discuss issues using <a href="https://mumble.sf.net/" target="_blank" rel="noopener noreferrer">Mumble</a>
            on <tt>gnunet.org</tt>. Feel free to join us in the lobby or developer rooms.
          {% endtrans %}
        </p>
      </div>

      <div class="col-lg-6">
        <h2>{{ _("Executive Team") }}</h2>
        <p>
          {% trans %}
            For non-technical commercial requests, please contact
            <a href="mailto:ceo'AT'taler-systems.com">ceo'AT'taler-systems.com</a>.
          {% endtrans %}
        </p>
      </div>

      <div class="col-lg-6">
        <h2>{{ _("Community Forum") }}</h2>
        <p>
          {% trans %}
          Our community forum for Taler is located at<a href="https://ich.taler.net/" target="_blank" rel="noopener noreferrer"> the Integration Community Hub (TALER ICH)</a>.
          {% endtrans %}
        </p>
      </div>

      <div class="col-lg-6">
        <h2>{{ _("Sales and Marketing") }}</h2>
        <p>
          {% trans %}
            You can reach our Head of Marketing handling your requests by sending an email to 
            <a href="mailto:sales'AT'taler.net">sales'AT'taler.net</a> respectively 
            <a href="mailto:marketing'AT'taler.net">marketing'AT'taler.net</a>.{% endtrans %}
        </p>
      </div>

      <div class="col-lg-6">
        <h2>{{ _("Onboarding") }}</h2>
        <p>
          {% trans %}
            If you want to contribute to GNU Taler you can send us an email to 
          <a href="mailto:onboarding'AT'taler-systems.com">onboarding'AT'taler-systems.com</a> or look up 
          <a href="https://taler-systems.com/en/company.html" target="_blank" rel="noopener noreferrer">open positions and job opportunities</a>.{% endtrans %}
        </p>
      </div>

      <div class="col-lg-6">
        <h2>{{ _("Public Relations and Media Contact") }}</h2>
        <p>
          {% trans %}
            You can reach our team members responsible for PR, press and media contacts via email to 
            <a href="mailto:press'AT'taler.net">press'AT'taler.net</a>.{% endtrans %}
        </p>
      </div>

    </div>
  </div>
{% endblock body_content %}