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

  <header>
    <h1>{{ _("Install") }}</h1>
  </header>

  <div class="row container justify-content-center">
    <div class="col-6">
      {% trans %}
      <p>The following GNUnet installation instructions help you building from source for your distribution.</p> 
      <p><i>Please note that the installation process will get much easier once we have proper packages again (planned for winter 2019).</i></p>
      {% endtrans %}
      {% trans %}
      <p>You have already installed GNUnet and want to use it? <a href="https://gnunet.org/en/use">Check this out!</a></p>
      <p>Further information is available in our <a href="https://docs.gnunet.org/handbook/#toc-Using-GNUnet-1">handbook</a>.</p>
      <p>If you have any queries about the installation or the usage, please <a href="engage.html">get in touch!</a></p>
      {% endtrans %}
    </div>
  </div>

  <div class="row container justify-content-center text-center">
    <div class="col-3">
      <p><a href="install-on-ubuntu1804.html"><img src="{{ url('static/images/ubuntu-logo32.png') }}" class="distro-logo"></a></p>
      <h3>Ubuntu 18.04</h3>
    </div>
    <div class="col-3">
      <p><a href="install-on-debian9.html"><img src="{{ url('static/images/debian-logo.svg') }}" class="distro-logo"></a></p>
      <h3>Debian 9</h3>
    </div>
    <div class="col-3">
      <!-- Not the officially distributed file, but it's the same logo, in svg. Use this. -->
      <p><a href="install-on-netbsd.html"><img src="{{ url('static/images/NetBSD_Logo.svg') }}" class="distro-logo"></a></p>
      <h3>NetBSD</h3>
    </div>
  </div>

  <div class="row container justify-content-center text-center">
    <div class="col-3">
      <p><a href="install-on-macos.html"><img src="{{ url('static/images/apple-logo.svg') }}" class="distro-logo"></a></p>
      <h3>macOS</h3>
    </div>
    <div class="col-3">
      <p><a href="install-on-archpi.html"><img src="{{ url('static/images/archlinux-logo.svg') }}" class="distro-logo" style="width:300px;height:auto"></a></p>
      <h3>Arch-Pi</h3>
    </div>
    <!--
    <div class="col-3">
      <p><a href="https://tutorial.gnunet.org/"><img src="{{ url('static/images/gnunet-logo-dark-text.png') }}" class="distro-logo" alt="GNUnet" /></a></p>
      <h3>C Coding Tutorial for GNUnet</h3>
    </div>
    -->
  </div>

</article>
{% endblock body_content %}