Mercurial > libervia-website
comparison templates/default/presentation/presentation.html @ 3:b7e8db97b3b0
presentation: added installation section, with links to Flatpak and Android packages
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 28 Jun 2019 17:12:40 +0200 |
parents | b7045cd85da9 |
children | dc880664a8ec |
comparison
equal
deleted
inserted
replaced
2:abef25655882 | 3:b7e8db97b3b0 |
---|---|
1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} | 1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} |
2 | 2 |
3 {% block body %} | 3 {% block body %} |
4 {{ icon_defs('chat', 'lock-filled', 'blog', 'exchange', 'picture', 'calendar', 'clipboard', 'desktop', 'mobile', 'globe', 'terminal', 'shield', 'ok', 'brush', 'unlink', 'heart-filled', 'group') }} | 4 {{ icon_defs('chat', 'lock-filled', 'blog', 'exchange', 'picture', 'calendar', 'clipboard', 'desktop', 'mobile', 'globe', 'terminal', 'shield', 'ok', 'brush', 'unlink', 'heart-filled', 'group', 'box') }} |
5 <div class="box box--zero box--center"> | 5 <div class="box box--zero box--center"> |
6 <h1> | 6 <h1> |
7 <img class="img--inline-bottom img--very-small" src="{{media_path}}icons_svg/sat.svg"> | 7 <img class="img--inline-bottom img--very-small" src="{{media_path}}icons_svg/sat.svg"> |
8 Salut à Toi | 8 Salut à Toi |
9 </h1> | 9 </h1> |
114 {% trans %}"Salut a Toi" is also the name of the association which manage the project.<br>Major decisions are debated there.{% endtrans %} | 114 {% trans %}"Salut a Toi" is also the name of the association which manage the project.<br>Major decisions are debated there.{% endtrans %} |
115 </li> | 115 </li> |
116 </ul> | 116 </ul> |
117 </div> | 117 </div> |
118 | 118 |
119 | |
120 <div class="box box--zero box--large box--center"> | |
121 <h2 class="heading__subtitle heading--paper"> | |
122 {% trans %}installation{% endtrans %} | |
123 </h2> | |
124 <h3 class="heading--paper">GNU/Linux</h3> | |
125 <p>{% trans %}If you are on GNU/Linux the recommended way to install SàT is to use your distribution official packages. Please check your distribution to see if Salut à Toi is available (and request it if it's not). SàT is available at least on Arch Linux and Debian and its derivated.{% endtrans %}</p> | |
126 <p>{% trans flatpak='<a href="https://flatpak.org/" target="_blank" rel="noreferrer noopener">Flatpak</a>'|safe %}If SàT 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> | |
127 <h3 class="heading--paper">Flatpak</h3> | |
128 <p class="text--warning"> | |
129 {% trans %} | |
130 Those packages are development preview, they are not stable and bugs and crashes may happen | |
131 {% endtrans %} | |
132 </p> | |
133 <ul class="grid"> | |
134 {% for url, name, description in ( | |
135 ("https://salut-a-toi.org/flatpak/org.salutatoi.Cagou_dev.flatpakref", | |
136 "Cagou", _("Desktop")), | |
137 | |
138 ("https://salut-a-toi.org/flatpak/org.salutatoi.Primitivus_dev.flatpakref", | |
139 "Primitivus", _("Text User Interface")), | |
140 | |
141 ("https://salut-a-toi.org/flatpak/org.salutatoi.Jp_dev.flatpakref", | |
142 "jp", _("Command Line Interface")), | |
143 ) %} | |
144 <li class='grid__item grid__item--medium grid__item--selectable'> | |
145 <a href="{{url}}" target="_blank"> | |
146 {{ icon('box', cls='icon--block icon--medium') }} | |
147 <span> | |
148 {% trans %}Click here to install {% endtrans %} | |
149 <span class="text--emphasis">{{name}}</span> ({{description}}) | |
150 </span> | |
151 </a> | |
152 </li> | |
153 {% endfor %} | |
154 </ul> | |
155 <div class="box"> | |
156 <p>{% trans %}If the links above are not working, you can use the following commands (supposing that Flatpak is already installed):{% endtrans %}</p> | |
157 <pre>flatpak install --user https://salut-a-toi.org/flatpak/org.salutatoi.Cagou_dev.flatpakref</pre> | |
158 <pre>flatpak install --user https://salut-a-toi.org/flatpak/org.salutatoi.Primitivus_dev.flatpakref</pre> | |
159 <pre>flatpak install --user https://salut-a-toi.org/flatpak/org.salutatoi.Jp_dev.flatpakref</pre> | |
160 </div> | |
161 <h3 class="heading--paper">Android</h3> | |
162 <p class="text--warning"> | |
163 {% trans %} | |
164 This package is a development preview, it is not stable and bugs and crashes may happen | |
165 {% endtrans %} | |
166 </p> | |
167 <ul class="grid"> | |
168 <li class='grid__item grid__item--medium grid__item--selectable'> | |
169 <a href="https://ftp.goffi.org/cagou/cagou.apk" target="_blank"> | |
170 {{ icon('box', cls='icon--block icon--medium') }} | |
171 <span> | |
172 {% trans %}Click here to install {% endtrans %} | |
173 <span class="text--emphasis"> | |
174 {% trans %}Cagou for Android{% endtrans%}</span> | |
175 </span> | |
176 </span> | |
177 </a> | |
178 </li> | |
179 </ul> | |
180 <h3 class="heading--paper"> | |
181 {% trans %} | |
182 Source Code | |
183 {% endtrans %} | |
184 </h3> | |
185 <p>{% trans doc_url_open='<a href="/documentation">'|safe, | |
186 doc_url_close='</a>'|safe %}If you have some technical ability, you can also install directly from source code, please check {{doc_url_open}}documentation{{doc_url_close}} for details {% endtrans %}</p> | |
187 <h3 class="heading--paper"> | |
188 {% trans %} | |
189 Other | |
190 {% endtrans %} | |
191 </h3> | |
192 <p>{% trans %}Please note that:{% endtrans %}</p> | |
193 <ul> | |
194 <li>{% trans %}Libervia, the web frontend, must be installed from source code, please check documentation for more details{% endtrans %}</li> | |
195 <li>{% trans %}There are Docker images, but outdated, so we don't list them here. We'll update them as soon as possible.{% endtrans %}</li> | |
196 <li>{% trans %}Salut à Toi may be installable on many platforms, contact us if you want to see it on a specific one{% endtrans %}</li> | |
197 </ul> | |
198 </div> | |
199 | |
119 {% endblock body %} | 200 {% endblock body %} |