diff options
author | ng0 <ng0@n0.is> | 2019-03-21 23:23:37 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-03-21 23:23:37 +0000 |
commit | 1a96770628ef27e2e7c32bebc1c3c87a09c19979 (patch) | |
tree | 45ad38296820799d02718364e122991ec70b9ffb | |
parent | c313268ff7d877f97365a5a7f321343443bcefc9 (diff) |
Add initial, rough, download page
-rw-r--r-- | template/download.html.j2 | 43 | ||||
-rw-r--r-- | template/index.html.j2 | 4 |
2 files changed, 45 insertions, 2 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 @@ +{% extends "common/base.j2" %} +{% block body_content %} + <article class="d-flex flex-column p-2 bd-highlight"> + <div class="container"> + <div class="text-center"> + <header> + <h1>{{ _("Downloads") }}</h1> + </header> + <br /> + <p> + {% trans %} + Here you can download releases of our software and + find links to the various versions. + {% endtrans %} + </p> + </div> + <h2>{{ _("0.11.x series") }}</h2> + <h3>{{ _("tarball") }}</h3> + <p> + {% trans %} + The tarball of version 0.11.0 can be obtained from + GNU FTP and its mirrors. + {% endtrans %} + </p> + <ul> + <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> + <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> + <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> + </ul> + <h3>{{ _("git") }}</h3> + <p> + {% trans %} + You can fetch the git tag of version 0.11.0 from our development server: + {% endtrans %} + </p> + <ul> + <li>git clone --branch v0.11.0 https://gnunet.org/git/gnunet.git</li> + <li>git clone --branch v0.11.0 https://gnunet.org/git/gnunet-gtk.git</li> + <li>git clone --branch v0.11.0 https://gnunet.org/git/gnunet-fuse.git</li> + </ul> + </div> + </article> +{% endblock body_content %} diff --git a/template/index.html.j2 b/template/index.html.j2 index 74056517..1f5c8e24 100644 --- a/template/index.html.j2 +++ b/template/index.html.j2 @@ -39,9 +39,9 @@ {% endtrans %} </p> <p> - <a class="btn btn-primary btn-lg" href="https://git.gnunet.org/gnunet.git"> + <a class="btn btn-primary btn-lg" href="download.html"> {% trans %} - Download GNUnet (via Git) + Download GNUnet {% endtrans %} </a> <a class="btn btn-primary btn-lg" href="ev.html"> |