aboutsummaryrefslogtreecommitdiff
path: root/template/download.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'template/download.html.j2')
-rw-r--r--template/download.html.j243
1 files changed, 43 insertions, 0 deletions
diff --git a/template/download.html.j2 b/template/download.html.j2
new file mode 100644
index 00000000..2b0d8e70
--- /dev/null
+++ b/template/download.html.j2
@@ -0,0 +1,43 @@
1{% extends "common/base.j2" %}
2{% block body_content %}
3 <article class="d-flex flex-column p-2 bd-highlight">
4 <div class="container">
5 <div class="text-center">
6 <header>
7 <h1>{{ _("Downloads") }}</h1>
8 </header>
9 <br />
10 <p>
11 {% trans %}
12 Here you can download releases of our software and
13 find links to the various versions.
14 {% endtrans %}
15 </p>
16 </div>
17 <h2>{{ _("0.11.x series") }}</h2>
18 <h3>{{ _("tarball") }}</h3>
19 <p>
20 {% trans %}
21 The tarball of version 0.11.0 can be obtained from
22 GNU FTP and its mirrors.
23 {% endtrans %}
24 </p>
25 <ul>
26 <li><a href="http://ftpmirror.gnu.org/gnunet/gnunet-0.11.0.tar.gz">gnunet-0.11.0.tar.gz</a> (<a href="http://ftpmirror.gnu.org/gnunet/gnunet-0.11.0.tar.gz.sig">electronic signature</a>)</li>
27 <li><a href="http://ftpmirror.gnu.org/gnunet/gnunet-gtk-0.11.0.tar.gz">gnunet-gtk-0.11.0.tar.gz</a> (<a href="http://ftpmirror.gnu.org/gnunet/gnunet-gtk-0.11.0.tar.gz.sig">electronic signature</a>)</li>
28 <li><a href="http://ftpmirror.gnu.org/gnunet/gnunet-fuse-0.11.0.tar.gz">gnunet-fuse-0.11.0.tar.gz</a> (<a href="http://ftpmirror.gnu.org/gnunet/gnunet-fuse-0.11.0.tar.gz.sig">electronic signature</a>)</li>
29 </ul>
30 <h3>{{ _("git") }}</h3>
31 <p>
32 {% trans %}
33 You can fetch the git tag of version 0.11.0 from our development server:
34 {% endtrans %}
35 </p>
36 <ul>
37 <li>git clone --branch v0.11.0 https://gnunet.org/git/gnunet.git</li>
38 <li>git clone --branch v0.11.0 https://gnunet.org/git/gnunet-gtk.git</li>
39 <li>git clone --branch v0.11.0 https://gnunet.org/git/gnunet-fuse.git</li>
40 </ul>
41 </div>
42 </article>
43{% endblock body_content %}