aboutsummaryrefslogtreecommitdiff
path: root/template/about.html.j2
blob: 55c9f6056e88f7adb5eeff6617e8d916a7ae3c61 (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
{% extends "common/base.j2" %}
{% block body_content %}
<div class="container">
  <article>
    <section>
      <h3>{{ _("About GNUnet") }}</h3>
      <p>
	{% trans %}
        We still have to write this section.
	{% endtrans %}
      </p>
      <h4>{{ _("Current funding") }}</h3>
      <p>
	{% trans %}
        We currently do not have any grants. All work is done by volunteers.
	{% endtrans %}
      </p>
      <h4>{{ _("Past funding") }}</h3>
      <p>
	{% trans %}
        We are grateful for past funding from the following organizations:
	{% endtrans %}
        <ul>
          <li>
            <p>
            <a href="https://renewablefreedom.org/">Renewable Freedom Foundation</a><br>
            <img src="{{ url('static/images/rff_logo.png') }}" alt="RFF logo">
            </p>
          </li>
          <li>
            <p>
            <a href="https://cordis.europa.eu/fp7/">European Commission (FP7)</a><br>
            <img src="{{ url('static/images/fp7_logo.jpg') }}" alt="FP7 logo">
            </p>
          </li>
          <li>
            <p>
            <a href="http://www.dfg.de/">Deutsche Forschungsgemeinschaft</a><br>
            <img src="{{ url('static/images/dfg_logo.gif') }}" alt="DFG logo">
            </p>
          </li>
          <li>
            <p>
            <a href="https://nlnet.nl/">NLnet Foundation</a><br>
            <img src="{{ url('static/images/nlnet_logo.gif') }}" alt="NLnet logo">
            </p>
          </li>
        </ul>
      </p>
    </section>
  </article>
</div>
{% endblock body_content %}