Mercurial > sat_legacy_website
annotate templates/sat_website/frontends.html @ 37:c570778a7620
add adhesion.html (needs some change)
author | souliane <souliane@mailoo.org> |
---|---|
date | Tue, 27 Jan 2015 08:17:55 +0100 |
parents | 10ce34ab389a |
children | e501f5ff7191 |
rev | line source |
---|---|
0 | 1 {% extends "sat_website/category.html" %} |
2 | |
3 {% comment %} | |
4 SàT website: Salut à Toi's presentation website | |
5 Copyright (C) 2012 Jérôme Poisson (goffi@goffi.org) | |
6 | |
7 This file is part of SàT website. | |
8 | |
9 SàT website is free software: you can redistribute it and/or modify | |
10 it under the terms of the GNU Affero General Public License as published by | |
11 the Free Software Foundation, either version 3 of the License, or | |
12 (at your option) any later version. | |
13 | |
14 Foobar is distributed in the hope that it will be useful, | |
15 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 GNU Affero General Public License for more details. | |
18 | |
19 You should have received a copy of the GNU Affero General Public License | |
20 along with Foobar. If not, see <http://www.gnu.org/licenses/>. | |
21 {% endcomment %} | |
22 | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
23 {% load i18n %} |
0 | 24 {% load staticfiles %} |
35
10ce34ab389a
dummy patch (just add some new lines to make space between the blocks)
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
25 |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
26 {% block headline %}{% trans "Salut à Toi's frontends" %}{% endblock %} |
21
8cfc33e4d435
add video showing the ad-hoc commands + fix some English
souliane <souliane@mailoo.org>
parents:
2
diff
changeset
|
27 {% block subtext %}{% trans "SàT is multi-frontends: use the one that best fits your needs" %}{% endblock %} |
0 | 28 {% block main_container %} |
35
10ce34ab389a
dummy patch (just add some new lines to make space between the blocks)
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
29 |
0 | 30 <div class="row"> |
26 | 31 <div class="col-md-4"> |
32 <h2>{% trans "Primitivus" %} <small>{% trans "the console interface" %}</small></h2> | |
33 <a href="#" class="thumbnail"> | |
34 <img src="{% static "images/screenshots/primitivus/primitivus_tarot.png" %}" alt="{% trans "Primitivus showing a french Tarot play" %}"> | |
35 </a> | |
0 | 36 </div> |
37 | |
26 | 38 <div class="col-md-4"> |
39 <h2>{% trans "Libervia" %} <small>{% trans "the web frontend" %}</small></h2> | |
40 <a href="#" class="thumbnail"> | |
41 <img src="{% static "images/screenshots/libervia/libervia_discussions.png" %}" alt="{% trans "Libervia's main view" %}"> | |
42 </a> | |
0 | 43 </div> |
44 | |
26 | 45 <div class="col-md-4"> |
46 <h2>{% trans "Wix" %} <small>{% trans "desktop" %}</small></h2> | |
47 <a href="#" class="thumbnail"> | |
48 <img src="{% static "images/screenshots/wix/wix_tarot.png" %}" alt="{% trans "Wix showing a french Tarot play" %}"> | |
49 </a> | |
0 | 50 </div> |
51 </div> | |
52 | |
53 | |
54 <div class="row"> | |
26 | 55 <div class="col-md-4"> |
56 <h2>{% trans "Jp" %} <small>{% trans "command line" %}</small></h2> | |
57 <a href="#" class="thumbnail"> | |
58 <img src="{% static "images/screenshots/jp/jp.png" %}" alt="{% trans "cowsay on jp" %}"> | |
59 </a> | |
0 | 60 </div> |
61 | |
26 | 62 <div class="col-md-4"> |
0 | 63 <p id="bigmark">?</p> |
26 | 64 <h4 id="bigmark_subtext">{% trans "Your idea here" %}</h4> |
0 | 65 </div> |
66 | |
26 | 67 <div class="col-md-4"> |
68 <h2>{% trans "Bellaciao" %} <small>{% trans "next gen desktop" %}</small></h2> | |
69 <h5 class="wip">{% trans "[WORK IN PROGRESS]" %}</h5> | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
70 <p class="desc">{% blocktrans %}Bellaciao is a new desktop frontend made with Qt (and the first non-python one: it's made with C++). It intend to be really flexible: you'll be able to adapt it to your taste. Bellaciao is made with modern features in mind: it not only concentrate on instant messaging, but also integrate things like microblogging or file sharing.{% endblocktrans %}</p> |
0 | 71 </div> |
72 </div> | |
73 | |
74 {% endblock %} |