Mercurial > libervia-website
annotate templates/default/presentation/presentation.html @ 35:347d32030451 default tip
presentation (docker): add info on how to connect
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 12 Dec 2023 17:01:20 +0100 |
parents | 68b51f51878c |
children |
rev | line source |
---|---|
0 | 1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} |
2 | |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
3 {% macro download_box(url, name, alias, description) %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
4 <div class="column content has-text-centered"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
5 <a href="{{url}}" target="_blank" class="has-text-black"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
6 <figure class="icon is-large"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
7 {{ icon("box") }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
8 </figure> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
9 <figcaption> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
10 {% trans %}Click here to install {% endtrans %}<br> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
11 <span class="has-text-weight-bold">{{name}}</span><br> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
12 (alias <span class="is-italic">{{alias}}</span>, {{description}}) |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
13 </figcaption> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
14 </a> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
15 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
16 {% endmacro %} |
0 | 17 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
18 {% block body_wrapper %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
19 {{ icon_defs('chat', 'lock-filled', 'blog', 'exchange', 'picture', 'calendar', 'clipboard', 'desktop', 'mobile', 'globe', 'terminal', 'shield', 'ok', 'brush', 'unlink', 'heart-filled', 'group', 'box', 'plus-circled') }} |
0 | 20 |
21 | |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
22 <section class="hero is-halfheight is-primary"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
23 <div id="toto" class="hero-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
24 <div class="container"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
25 <nav class="level is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
26 <div class="level-left is-flex-shrink-1"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
27 <div class="level-item"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
28 <figure class="image is-128x128"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
29 <img src="{{media_path}}icons_svg/sat.svg" alt="Libervia logo"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
30 </figure> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
31 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
32 <div class="level-item is-flex-direction-column is-align-items-flex-start is-flex-shrink-1"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
33 <p class="is-size-1 has-text-weight-bold">Libervia</p> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
34 <p class="is-size-5">{% trans %}The Universal Communication Ecosystem{% endtrans %}</p> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
35 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
36 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
37 </nav> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
38 <div class="message is-info"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
39 <div class="message-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
40 <p class="is-size-5"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
41 {% trans %}Libervia is a all-in-one tool to manage all your communications needs: instant messaging, (micro)blogging, file sharing, photo albums, events, forums, tasks, etc.{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
42 </p> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
43 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
44 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
45 <nav class="level is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
46 <div class="level-left"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
47 <div class="level-item"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
48 <a class="button is-large is-info is-rounded" href="#demo">{% trans %}Try it!{% endtrans %}</a> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
49 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
50 <div class="level-item"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
51 <a class="button is-large is-info is-rounded" href="#installation">{% trans %}Install it!{% endtrans %}</a> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
52 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
53 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
54 </nav> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
55 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
56 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
57 </section> |
0 | 58 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
59 <section class="hero is-halfheight"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
60 <div class="hero-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
61 <div class="container"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
62 <div class="columns is-vcentered"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
63 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
64 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
65 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
66 {{Â icon('chat', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
67 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
68 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
69 {% trans %}Chat with your friends, family or coworkers{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
70 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
71 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
72 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
73 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
74 {{Â icon('lock-filled', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
75 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
76 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
77 {% trans %}Encrypt conversations to protect your privacy{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
78 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
79 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
80 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
81 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
82 {{Â icon('blog', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
83 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
84 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
85 {% trans %}Blog publicly or only with a group of contacts{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
86 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
87 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
88 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
89 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
90 {{Â icon('exchange', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
91 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
92 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
93 {% trans %}Share files directly (peer to peer) or store them on your server and access them from anywhere{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
94 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
95 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
96 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
97 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
98 {{Â icon('picture', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
99 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
100 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
101 {% trans %}Share private photos albums with your family{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
102 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
103 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
104 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
105 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
106 {{Â icon('calendar', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
107 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
108 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
109 {% trans %}Create and manage events{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
110 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
111 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
112 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
113 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
114 {{Â icon('clipboard', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
115 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
116 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
117 {% trans %}Organise your day to day life or work with lists{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
118 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
119 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
120 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
121 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
122 <div class="content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
123 <img src="libervia_web_0.8_blog.jpg" alt="Screenshot of Libervia web 0.8 blog" class="screenshot_web"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
124 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
125 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
126 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
127 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
128 </section> |
0 | 129 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
130 <section class="hero is-halfheight has-background-primary-dark has-text-white"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
131 <div class="hero-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
132 <div class="container"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
133 <div class="columns is-vcentered"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
134 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
135 <img src="libervia_web_0.8_list_invitation.jpg" alt=""> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
136 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
137 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
138 <div class="content is-size-4"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
139 {% trans %}With its easy invitation system, you can smoothly meet your family or friends. It's a perfect fit to share with your loved ones.{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
140 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
141 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
142 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
143 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
144 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
145 </section> |
0 | 146 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
147 <section class="hero is-halfheight has-background-white-ter"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
148 <div class="hero-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
149 <div class="columns"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
150 <div class="column content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
151 <figure> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
152 <img src="libervia_web_0.8_photo_album.jpg" alt="Libervia-web 0.8 photo album" class="screenshot_web"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
153 <figcaption>{% trans %}Share your photo albums{% endtrans %}</figcaption> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
154 </figure> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
155 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
156 <div class="column content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
157 <figure> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
158 <img src="libervia_web_0.8_forums.jpg" alt="Libervia-web 0.8 forums" class="screenshot_web"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
159 <figcaption>{% trans %}Arange topics in forums{% endtrans %}</figcaption> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
160 </figure> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
161 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
162 <div class="column content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
163 <figure> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
164 <img src="libervia_web_0.8_events.jpg" alt="Libervia-web 0.8 events" class="screenshot_web"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
165 <figcaption>{% trans %}Organise events with your friends{% endtrans %}</figcaption> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
166 </figure> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
167 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
168 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
169 |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
170 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
171 </section> |
0 | 172 |
173 | |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
174 <section class="hero is-halfheight"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
175 <div class="hero-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
176 <div class="container"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
177 <div class="columns is-vcentered"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
178 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
179 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
180 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
181 {{Â icon('desktop', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
182 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
183 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
184 {% trans %}Works natively on desktop{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
185 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
186 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
187 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
188 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
189 {{Â icon('globe', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
190 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
191 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
192 {% trans %}Works on the web{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
193 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
194 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
195 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
196 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
197 {{Â icon('mobile', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
198 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
199 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
200 {% trans %}Works natively on mobile devices (Android){% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
201 <span class="is-italic"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
202 [{% trans %}work in progress{% endtrans %}] |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
203 </span> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
204 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
205 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
206 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
207 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
208 {{Â icon('ok', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
209 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
210 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
211 {% trans %}Cross-platform{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
212 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
213 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
214 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
215 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
216 {{Â icon('terminal', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
217 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
218 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
219 {% trans %}Powerful command-line interface{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
220 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
221 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
222 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
223 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
224 {{Â icon('brush', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
225 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
226 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
227 {% trans %}Highly modular and customisable{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
228 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
229 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
230 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
231 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
232 {{Â icon('plus-circled', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
233 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
234 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
235 {% trans %}Lot of powerful tools and features accompany the project, please check documentation{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
236 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
237 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
238 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
239 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
240 <div class="content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
241 <img src="libervia_mobile_0.8_chat_upload.jpg" alt="Screenshot of Libervia mobile 0.8 chat with upload panel" class="screenshot_mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
242 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
243 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
244 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
245 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
246 </section> |
0 | 247 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
248 <section class="hero is-halfheight is-primary"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
249 <div class="hero-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
250 <div class="container content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
251 <p class="is-size-4"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
252 {% trans url_open='<a href="/social_contract" class="is-underline">'|safe,url_close='</a>'|safe %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
253 Libervia is a Libre software, based on well established standards (XMPP), decentralised and federating. It is developed around strong ethical values. Check our {{url_open}}social contract{{url_close}}. |
0 | 254 {% endtrans %} |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
255 </p> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
256 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
257 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
258 </section> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
259 |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
260 <section class="hero is-halfheight has-background-white-ter"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
261 <div class="hero-body is-justify-content-center"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
262 <div class="is-flex is-flex-direction-column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
263 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
264 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
265 {{Â icon('unlink', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
266 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
267 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
268 {% trans %}Libervia is a Libre software{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
269 |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
270 {% trans url_open='<a href="https://repos.goffi.org/sat/file/tip">'|safe,url_close='</a>'|safe %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
271 ({{url_open}}source code{{url_close}}). |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
272 {% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
273 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
274 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
275 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
276 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
277 {{Â icon('heart-filled', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
278 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
279 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
280 {% trans %}We follow a social contract, a moral engagement with the community{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
281 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
282 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
283 <div class="columns is-gapless is-mobile"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
284 <div class="column list_icon"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
285 {{Â icon('group', cls='icon') }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
286 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
287 <div class="column"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
288 {% trans %}"Salut a Toi" is the name of the association which manages the project.<br>Major decisions are debated there.{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
289 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
290 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
291 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
292 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
293 </section> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
294 |
25
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
295 {#<div id="demo" class="section container"> |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
296 <h1 class="title is-2">{% trans %}Demo{% endtrans %}</h1> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
297 <div class="box content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
298 <p> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
299 {% trans |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
300 demo_url_open='<a href="https://www.libervia.org" target="_blank">'|safe, |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
301 demo_url_close='</a>'|safe |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
302 -%} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
303 A demo server is available for you to try Libervia at {{demo_url_open}}https://www.libervia.org{{demo_url_close}}. |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
304 {%- endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
305 </p> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
306 <div class="message is-warning"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
307 <div class="message-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
308 {% trans -%} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
309 Please note that this is only for demo purpose, and all data (including accounts) may be wiped out at any time, don't use it for any serious purpose. |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
310 {%- endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
311 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
312 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
313 </div> |
25
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
314 </div> #} |
0 | 315 |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
316 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
317 <div id="installation" class="section container"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
318 <h1 class="title is-2"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
319 {% trans %}Installation{% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
320 </h1> |
25
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
321 <div class="message is-warning"> |
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
322 <div class="message-body"> |
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
323 {% trans %} |
33
2f0a33b117d3
presentation: docker image are available again
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
324 We apologize for the inconvenience, but the Flatpak images previously provided for our project are outdated and currently not functioning properly. In the meantime, we recommend utilizing the source code directly until we resolve the issue. |
25
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
325 {% endtrans %} |
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
326 </div> |
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
327 </div> |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
328 <h3 class="subtitle is-3">GNU/Linux</h3> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
329 <div class="content box"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
330 <p>{% trans %}If you are on GNU/Linux the recommended way to install Libervia is to use your distribution official packages. Please check your distribution to see if Libervia is available (and request it if it's not). Libervia is available at least on Arch Linux and Debian and its derivated.{% endtrans %}</p> |
25
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
331 {#<p>{% trans flatpak='<a href="https://flatpak.org/" target="_blank" rel="noreferrer noopener">Flatpak</a>'|safe %}If Libervia is not available or the version is too old, you can use {{flatpak}} (which may be installed by default on some recent distributions) to install it, see below.{% endtrans %}</p> #} |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
332 </div> |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
333 |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
334 |
25
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
335 {#<h3 class="subtitle is-3">Flatpak</h3> |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
336 <div class="message is-warning"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
337 <div class="message-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
338 {% trans %} |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
339 Those packages are development preview, they are not stable and bugs and crashes may happen |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
340 {% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
341 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
342 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
343 <div class="columns"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
344 {% for url, name, alias, description in ( |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
345 ("/flatpak/org.libervia.LiberviaDesktop_dev.flatpakref", |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
346 "Libervia Desktop", "Cagou", _("Desktop")), |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
347 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
348 ("/flatpak/org.libervia.LiberviaTUI_dev.flatpakref", |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
349 "Libervia TUI", "Primitivus", _("Text User Interface")), |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
350 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
351 ("/flatpak/org.libervia.LiberviaCLI_dev.flatpakref", |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
352 "Libervia CLI", "jp", _("Command-Line Interface")), |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
353 ) %} |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
354 {{ download_box(url, name, alias, description) }} |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
355 {% endfor %} |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
356 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
357 <div class="box content"> |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
358 <p>{% trans %}If the links above are not working, you can use the following commands (supposing that Flatpak is already installed):{% endtrans %}</p> |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
359 <pre>flatpak install --user https://salut-a-toi.org/flatpak/org.libervia.LiberviaDesktop_dev.flatpakref</pre> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
360 <pre>flatpak install --user https://salut-a-toi.org/flatpak/org.libervia.LiberviaTUI_dev.flatpakref</pre> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
361 <pre>flatpak install --user https://salut-a-toi.org/flatpak/org.libervia.LiberviaCLI_dev.flatpakref</pre> |
25
91e2f18bbbbb
presentation: temporarily disable broken installation sections
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
362 </div> #} |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
363 |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
364 |
33
2f0a33b117d3
presentation: docker image are available again
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
365 <h3 class="subtitle is-3">Docker</h3> |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
366 <div class="message is-warning"> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
367 <div class="message-body"> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
368 {% trans %} |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
369 Those images are development preview, they are not stable and bugs and crashes may happen |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
370 {% endtrans %} |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
371 </div> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
372 </div> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
373 <div class="message is-info"> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
374 <div class="message-body"> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
375 <p> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
376 {% trans docker_dir='<var>docker</var>'|safe -%} |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
377 Docker Compose and image building files (Dockerfile) are available in the main repository in {{docker_dir}} |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
378 directory. |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
379 {%- endtrans %} |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
380 </p> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
381 </div> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
382 </div> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
383 <div class="box content"> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
384 <p>{% trans libervia_web='<strong>Libervia Web</strong>'|safe -%} |
35
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
385 To try a local demo of {{libervia_web}}, you can use the following instructions (assuming that wget and Docker |
34 | 386 are installed): |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
387 {%- endtrans %} |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
388 </p> |
35
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
389 <pre>wget https://repos.goffi.org/libervia-backend/raw-file/tip/docker/web-demo.yml |
34 | 390 docker compose -f web-demo.yml up</pre> |
35
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
391 <p> |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
392 {%- trans demo_url='<a href="http://localhost:8880" target="_blank">http://localhost:8880</a>'|safe, demo_account='<code>demo</code>/<code>demo</code>'|safe -%} |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
393 Then launch your web browser at {{demo_url}} and either use {{demo_account}}, an existing XMPP account, or sign up for a new one using the registration link at the bottom. |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
394 {%- endtrans -%} |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
395 </p> |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
396 <p> |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
397 {%- trans remove_instr='<code>docker-compose -f web-demo.yml down</code>'|safe, volume_remove='<code>-v</code>'|safe -%} |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
398 To remove the container images, just enter {{remove_instr}} (add {{volume_remove}} |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
399 at the end if you also want to remove the associated volume, i.e., data persistence). |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
400 {%- endtrans -%} |
347d32030451
presentation (docker): add info on how to connect
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
401 </p> |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
402 </div> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
403 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
404 <h3 class="subtitle is-3">Android</h3> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
405 <div class="message is-warning"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
406 <div class="message-body"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
407 {% trans %} |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
408 This package is a development preview, it is not stable and bugs and crashes may happen |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
409 {% endtrans %} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
410 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
411 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
412 <div class="columns"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
413 {{ download_box("https://ftp.goffi.org/cagou/cagou.apk", "Libervia Mobile", "Cagou", "Android") }} |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
414 </div> |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
415 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
416 <h3 class="subtitle is-3"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
417 {% trans %}Source Code{% endtrans %} |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
418 </h3> |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
419 <div class="box content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
420 <p>{% trans doc_url_open='<a href="/documentation">'|safe, |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
421 doc_url_close='</a>'|safe %}You can also install directly from source code, please check {{doc_url_open}}documentation{{doc_url_close}} for details {% endtrans %}</p> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
422 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
423 </div> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
424 <h3 class="subtitle is-3"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
425 {% trans %}Other{% endtrans %} |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
426 </h3> |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
427 <div class="box content"> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
428 <p>{% trans %}Please note that:{% endtrans %}</p> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
429 <ul> |
12
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
430 <li>{% trans %}Libervia is in heavy development, things evolve quickly.{% endtrans %}</li> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
431 <li>{% trans %}Feedbacks are welcome{% endtrans %}</li> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
432 <li>{% trans %}Other projects are completing Libervia ecosystem, please check documentation.{% endtrans %}</li> |
0d6ae55579a5
presentation: added docker instructions + updated bullet points at the end.
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
433 <li>{% trans %}Libervia may be installable on many platforms, contact us if you want to see it on a specific one.{% endtrans %}</li> |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
434 </ul> |
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
435 </div> |
3
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
436 </div> |
b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
437 |
8
dc880664a8ec
modernisation of the theme using Bulma
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
438 {% endblock body_wrapper %} |