Mercurial > sat_legacy_website
annotate templates/sat_website/frontends.html @ 26:3df49721008c
upgrade to Bootstrap v3.3.1
author | souliane <souliane@mailoo.org> |
---|---|
date | Mon, 19 Jan 2015 21:22:40 +0100 |
parents | 8cfc33e4d435 |
children | 10ce34ab389a |
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 %} |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
25 {% 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
|
26 {% block subtext %}{% trans "SàT is multi-frontends: use the one that best fits your needs" %}{% endblock %} |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
27 {# {% block extra %}<span class="label label-success">{% trans "Click on the frontend screenshot to have a more detailed description" %}</span>{% endblock %} #} |
0 | 28 {% block main_container %} |
29 <div class="row"> | |
26 | 30 <div class="col-md-4"> |
31 <h2>{% trans "Primitivus" %} <small>{% trans "the console interface" %}</small></h2> | |
32 <a href="#" class="thumbnail"> | |
33 <img src="{% static "images/screenshots/primitivus/primitivus_tarot.png" %}" alt="{% trans "Primitivus showing a french Tarot play" %}"> | |
34 </a> | |
0 | 35 </div> |
36 | |
26 | 37 <div class="col-md-4"> |
38 <h2>{% trans "Libervia" %} <small>{% trans "the web frontend" %}</small></h2> | |
39 <a href="#" class="thumbnail"> | |
40 <img src="{% static "images/screenshots/libervia/libervia_discussions.png" %}" alt="{% trans "Libervia's main view" %}"> | |
41 </a> | |
0 | 42 </div> |
43 | |
26 | 44 <div class="col-md-4"> |
45 <h2>{% trans "Wix" %} <small>{% trans "desktop" %}</small></h2> | |
46 <a href="#" class="thumbnail"> | |
47 <img src="{% static "images/screenshots/wix/wix_tarot.png" %}" alt="{% trans "Wix showing a french Tarot play" %}"> | |
48 </a> | |
0 | 49 </div> |
50 </div> | |
51 | |
52 | |
53 <div class="row"> | |
26 | 54 <div class="col-md-4"> |
55 <h2>{% trans "Jp" %} <small>{% trans "command line" %}</small></h2> | |
56 <a href="#" class="thumbnail"> | |
57 <img src="{% static "images/screenshots/jp/jp.png" %}" alt="{% trans "cowsay on jp" %}"> | |
58 </a> | |
0 | 59 </div> |
60 | |
26 | 61 <div class="col-md-4"> |
0 | 62 <p id="bigmark">?</p> |
26 | 63 <h4 id="bigmark_subtext">{% trans "Your idea here" %}</h4> |
0 | 64 </div> |
65 | |
26 | 66 <div class="col-md-4"> |
67 <h2>{% trans "Bellaciao" %} <small>{% trans "next gen desktop" %}</small></h2> | |
68 <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
|
69 <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 | 70 </div> |
71 </div> | |
72 | |
73 {% endblock %} |