]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/location/install.html
location: Explain more basic information
[ipfire.org.git] / src / templates / location / install.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Install IPFire Location") }}{% end block %}
4
5 {% block container %}
6 <section class="hero is-light">
7 <div class="hero-body">
8 <div class="container">
9 <nav class="breadcrumb" aria-label="breadcrumbs">
10 <ul>
11 <li>
12 <a href="/">
13 {{ _("Home") }}
14 </a>
15 </li>
16 <li>
17 <a href="/location">
18 {{ _("Location") }}
19 </a>
20 </li>
21 <li class="is-active">
22 <a href="#" aria-current="page">{{ _("Install") }}</a>
23 </li>
24 </ul>
25 </nav>
26
27 <h1 class="title">{{ _("Install IPFire Location") }}</h1>
28
29 <div class="columns is-centered is-multiline py-5">
30 <div class="column is-one-third">
31 <a class="button is-large is-fullwidth is-light" href="/">
32 {% module IPFireLogo() %}
33 </a>
34 </div>
35
36 <div class="column is-one-third">
37 <a class="button is-large is-fullwidth is-light" href="https://archlinux.org/packages/extra/x86_64/libloc/">
38 <span class="icon">
39 <i class="fa-brands fa-linux"></i>
40 </span>
41 <span>Archlinux (AUR)</span>
42 </a>
43 </div>
44
45 <div class="column is-one-third">
46 <a class="button is-large is-fullwidth is-light" href="https://packages.debian.org/source/stable/libloc">
47 <span class="icon">
48 <i class="fa-brands fa-debian"></i>
49 </span>
50 <span>Debian</span>
51 </a>
52 </div>
53
54 <div class="column is-one-third">
55 <a class="button is-large is-fullwidth is-light" href="https://packages.fedoraproject.org/pkgs/libloc/">
56 <span class="icon">
57 <i class="fa-brands fa-fedora"></i>
58 </span>
59 <span>Fedora</span>
60 </a>
61 </div>
62
63 <div class="column is-one-third">
64 <a class="button is-large is-fullwidth is-light" href="https://packages.ubuntu.com/source/stable/libloc">
65 <span class="icon">
66 <i class="fa-brands fa-ubuntu"></i>
67 </span>
68 <span>Ubuntu</span>
69 </a>
70 </div>
71 </div>
72
73 <h4 class="subtitle">
74 IPFire Location supports a variety of distributions.
75 Select your favorite one, install the packages and be ready
76 to use IPFire Location in seconds.
77 </h4>
78 </div>
79 </div>
80 </section>
81
82 <section class="hero">
83 <div class="hero-body">
84 <div class="container">
85 <h4 class="title is-4">{{ _("Source") }}</h4>
86
87 <div class="content">
88 <p>
89 If you want to review the source or if you want to compile
90 IPFire Location on your own, you can download the source here.
91 </p>
92 </div>
93
94 <div class="buttons">
95 <a class="button is-light" href="https://source.ipfire.org/releases/libloc/">
96 {{ _("Download") }}
97 </a>
98
99 <a class="button is-light" href="https://git.ipfire.org/?p=location/libloc.git;a=summary">
100 {{ _("Browse") }}
101 </a>
102 </div>
103 </div>
104 </div>
105 </section>
106 {% end block %}