aboutsummaryrefslogtreecommitdiff
path: root/template/about.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'template/about.html.j2')
-rw-r--r--template/about.html.j253
1 files changed, 53 insertions, 0 deletions
diff --git a/template/about.html.j2 b/template/about.html.j2
new file mode 100644
index 00000000..55c9f605
--- /dev/null
+++ b/template/about.html.j2
@@ -0,0 +1,53 @@
1{% extends "common/base.j2" %}
2{% block body_content %}
3<div class="container">
4 <article>
5 <section>
6 <h3>{{ _("About GNUnet") }}</h3>
7 <p>
8 {% trans %}
9 We still have to write this section.
10 {% endtrans %}
11 </p>
12 <h4>{{ _("Current funding") }}</h3>
13 <p>
14 {% trans %}
15 We currently do not have any grants. All work is done by volunteers.
16 {% endtrans %}
17 </p>
18 <h4>{{ _("Past funding") }}</h3>
19 <p>
20 {% trans %}
21 We are grateful for past funding from the following organizations:
22 {% endtrans %}
23 <ul>
24 <li>
25 <p>
26 <a href="https://renewablefreedom.org/">Renewable Freedom Foundation</a><br>
27 <img src="{{ url('static/images/rff_logo.png') }}" alt="RFF logo">
28 </p>
29 </li>
30 <li>
31 <p>
32 <a href="https://cordis.europa.eu/fp7/">European Commission (FP7)</a><br>
33 <img src="{{ url('static/images/fp7_logo.jpg') }}" alt="FP7 logo">
34 </p>
35 </li>
36 <li>
37 <p>
38 <a href="http://www.dfg.de/">Deutsche Forschungsgemeinschaft</a><br>
39 <img src="{{ url('static/images/dfg_logo.gif') }}" alt="DFG logo">
40 </p>
41 </li>
42 <li>
43 <p>
44 <a href="https://nlnet.nl/">NLnet Foundation</a><br>
45 <img src="{{ url('static/images/nlnet_logo.gif') }}" alt="NLnet logo">
46 </p>
47 </li>
48 </ul>
49 </p>
50 </section>
51 </article>
52</div>
53{% endblock body_content %}