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

  <header>
    <h1>{{ _("Verein zur F&ouml;rderung von GNUnet e.V.") }}</h1>
  </header>

  <div class="row">
    <div class="col-md">
      <h3>{{ _("About GNUnet e.V.") }}</h3>
      <p>
        {% trans %}
        On December 27th 2013 a group of GNUnet hackers met at 30c3
        to create the "Verein zur F&ouml;rderung von GNUnet e.V.", an
        association under German law to support GNUnet development.
        The Amtsgericht M&uuml;nchen registered the association on the
        7th of March under VR 205287.
        {% endtrans %}
      </p>
      <p>
        {% trans %}
          The association is officially dedicated to supporting research,
          development and education in the area of secure decentralized
          networking in general, and GNUnet specifically.  This is the
          official website for the association.
        {% endtrans %}
      </p>
    </div>
    <div class="col-md">
      <h3>{{ _("Becoming a Member of GNUnet e.V.") }}</h3>
      <p>
        {% trans %}
          GNUnet developers with git (write) access can become
          members to participate in the decision process and
          formally support GNUnet e.V.  For this, all you have
          to do is update the <tt>members.txt</tt> file in the
          <a href="https://git.gnunet.org/gnunet-ev.git/">gnunet-ev</a> repository.
          There are no membership dues; however, members are required
          to support GNUnet e.V. and in particularly contribute to the
          technical development within their means. For further
          details, we refer to the
          <a href="https://git.gnunet.org/gnunet-ev.git/">Satzung</a>
          (currently only available in German, translations welcome).
        {% endtrans %}
      </p>
    </div>
  </div><!-- END:row -->

  <div class="row">
    <div class="col-md">
      <h3>{{ _("Governance") }}</h3>
      <p>
        {% trans %}
          You can find our "Satzung", and the list of members under
          <a href="https://git.gnunet.org/gnunet-ev.git/tree/satzung.tex">https://git.gnunet.org/gnunet-ev.git/tree/satzung.tex</a>.
          The current board consists of:
          <dl><dt>Vorsitz</dt>
            <dd><a href="https://schanzen.eu">Martin Schanzenbach</a></dd>
            <dt>stellvertretender Vorsitz</dt>
            <dd><a href="https://grothoff.org/christian/">Christian Grothoff</a></dd>
            <dt>Kassenwart</dt>
            <dd>Florian Dold</dd>
            <dt>Beisitzer</dt>
            <dd>
                Hartmut Goebel, DVN
            </dd>
          </dl>
        {% endtrans %}
      </p>
    </div>
    <div class="col-md">
      <h3>{{ _("Official Meeting Notes") }}</h3>
      <ul>
        {% for year, date in meetingnotesdata.items() %}
          <li>
            {{ year|e }}: (Protocol: <a href="https://git.gnunet.org/gnunet-ev.git/tree/minutes/{{ date|e }}.txt">txt</a>)
          </li>
        {% endfor %}
      </ul>
    </div>
  </div><!-- END:row -->

  <div class="row">
    <div class="col-md">
      <h3>{{ _("Support Us!") }}</h3>
      <p>
        {% trans %}
          Everybody is welcome to support us via donations. For
          financial contributions, Europeans are able to donate via
          SEPA. We hope to setup accounts in other major currency areas
          in the future.  You can also donate via Bitcoin, routing
          details are given below.  Please note that we are unable to
          provide receipts for your donations.  If you are planning to
          donate a significant amount of money, please contact us first
          as it might be better to come to a custom arrangement.

          <dl><dt>BitCoin</dt>
            <dd>1GNUnetpWeR9Zs3vipdvVywo1GseeksjUh</dd>
            <dt>SEPA/IBAN</dt>
            <dd>DE67830654080004822650 (BIC/SWIFT: GENODEF1SLR)</dd>
          </dl>
        {% endtrans %}
      </p>
    </div>
    <div class="col">
    </div>
  </div><!-- END:row -->

</div> <!-- /container -->
</article>
{% endblock body_content %}