contact.html.j2 (4397B)
1 {% extends "common/base.j2" %} 2 {% block subtitle %}{{ _("Contact")}}{% endblock subtitle %} 3 {% block body_content %} 4 <main id="maincontent"> 5 <div class="jumbotron"> 6 <div class="container text-center"> 7 <h1>{{ _("Contact Overview") }}</h1> 8 </div> 9 </div> 10 11 <div class="container"> 12 <div class="row"> 13 <div class="col-lg-6"> 14 <h2>{{ _("GNU Taler Mailing List") }}</h2> 15 <p> 16 {% trans %} 17 A public mailing list for GNU Taler is hosted at 18 <a href="https://lists.gnu.org/mailman/listinfo/taler" target="_blank" rel="noopener noreferrer">https://lists.gnu.org/mailman/listinfo/taler</a>, 19 <a href="https://lists.gnu.org/archive/html/taler/" target="_blank" rel="noopener noreferrer">archived here</a>. 20 You can send messages to the list via email to 21 <a href="mailto:taler'AT'gnu.org">taler'AT'gnu.org</a>.{% endtrans %} 22 </p> 23 </div> 24 25 <div class="col-lg-6"> 26 <h2>{{ _("General Inquiries") }}</h2> 27 <p> 28 {% trans %} 29 You can reach a group of team members handling general inquiries by sending emails to 30 <a href="mailto:contact'AT'taler.net">contact'AT'taler.net</a>. 31 {% endtrans %} 32 </p> 33 </div> 34 35 <div class="col-lg-6"> 36 <h2>{{ _("Reporting Bugs") }}</h2> 37 <p> 38 {% trans %} 39 We track open feature requests and bugs in our 40 {% endtrans %} 41 <a href="https://bugs.taler.net/" target="_blank" rel="noopener noreferrer">{{ _("Bug tracker") }}</a>, 42 {% trans %} 43 which is shared with the GNUnet project. 44 You can also report bugs or feature requests to the mailing list. 45 {% endtrans %} 46 </p> 47 </div> 48 49 <div class="col-lg-6"> 50 <h2>{{ _("Contacting Individuals") }}</h2> 51 <p> 52 {% trans %} 53 Team members are generally reachable at 54 <tt>LASTNAME AT taler.net</tt>. All of us 55 support receiving GnuPG encrypted e-mails. 56 {% endtrans %} 57 </p> 58 </div> 59 60 <div class="col-lg-6"> 61 <h2>{{ _("Chat") }}</h2> 62 <p> 63 {% trans %} 64 We frequently discuss issues using <a href="https://mumble.sf.net/" target="_blank" rel="noopener noreferrer">Mumble</a> 65 on <tt>gnunet.org</tt>. Feel free to join us in the lobby or developer rooms. 66 {% endtrans %} 67 </p> 68 </div> 69 70 <div class="col-lg-6"> 71 <h2>{{ _("Executive Team") }}</h2> 72 <p> 73 {% trans %} 74 For non-technical commercial requests, please contact 75 <a href="mailto:ceo'AT'taler-systems.com">ceo'AT'taler-systems.com</a>. 76 {% endtrans %} 77 </p> 78 </div> 79 80 <div class="col-lg-6"> 81 <h2>{{ _("Community Forum") }}</h2> 82 <p> 83 {% trans %} 84 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>. 85 {% endtrans %} 86 </p> 87 </div> 88 89 <div class="col-lg-6"> 90 <h2>{{ _("Sales and Marketing") }}</h2> 91 <p> 92 {% trans %} 93 You can reach our Head of Marketing handling your requests by sending an email to 94 <a href="mailto:sales'AT'taler.net">sales'AT'taler.net</a> respectively 95 <a href="mailto:marketing'AT'taler.net">marketing'AT'taler.net</a>.{% endtrans %} 96 </p> 97 </div> 98 99 <div class="col-lg-6"> 100 <h2>{{ _("Onboarding") }}</h2> 101 <p> 102 {% trans %} 103 If you want to contribute to GNU Taler you can send us an email to 104 <a href="mailto:onboarding'AT'taler-systems.com">onboarding'AT'taler-systems.com</a> or look up 105 <a href="https://taler-systems.com/en/company.html" target="_blank" rel="noopener noreferrer">open positions and job opportunities</a>.{% endtrans %} 106 </p> 107 </div> 108 109 <div class="col-lg-6"> 110 <h2>{{ _("Public Relations and Media Contact") }}</h2> 111 <p> 112 {% trans %} 113 You can reach our team members responsible for PR, press and media contacts via email to 114 <a href="mailto:press'AT'taler.net">press'AT'taler.net</a>.{% endtrans %} 115 </p> 116 </div> 117 118 </div> 119 </div> 120 {% endblock body_content %}