annotate templates/sat_website/frontends.html @ 141:ebd55a28b6d2

add cagou and sententia screenshots
author souliane <souliane@mailoo.org>
date Tue, 03 May 2016 20:55:45 +0200
parents 82cec659362b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
1 {% extends "sat_website/category.html" %}
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
2
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
3 {% comment %}
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
4 SàT website: Salut à Toi's presentation website
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
5 Copyright (C) 2012 Jérôme Poisson (goffi@goffi.org)
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
6
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
7 This file is part of SàT website.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
8
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
9 SàT website is free software: you can redistribute it and/or modify
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
10 it under the terms of the GNU Affero General Public License as published by
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
11 the Free Software Foundation, either version 3 of the License, or
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
12 (at your option) any later version.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
13
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
14 Foobar is distributed in the hope that it will be useful,
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
17 GNU Affero General Public License for more details.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
18
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
19 You should have received a copy of the GNU Affero General Public License
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
20 along with Foobar. If not, see <http://www.gnu.org/licenses/>.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
21 {% endcomment %}
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
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
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
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 %}
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
27 {% block subtext %}{% trans "SàT is multi frontend: use the one that best fits your needs." %}{% endblock %}
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
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
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
30 <div class="row">
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
31 <div class="col-md-4">
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
32 <h2>{% trans "Libervia" %} <small>{% trans "web frontend" %}</small></h2>
127
82cec659362b add 3 new screenshots from version 0.6, replace Libervia's overview
souliane <souliane@mailoo.org>
parents: 48
diff changeset
33 <a href="{% static "images/screenshots/0.6/overview.png" %}" target="#" class="thumbnail">
82cec659362b add 3 new screenshots from version 0.6, replace Libervia's overview
souliane <souliane@mailoo.org>
parents: 48
diff changeset
34 <img src="{% static "images/screenshots/0.6/overview.png" %}" alt="{% trans "Libervia's main view" %}">
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
35 </a>
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
36 </div>
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
37
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
38 <div class="col-md-4">
38
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
39 <h2>{% trans "Primitivus" %} <small>{% trans "console interface" %}</small></h2>
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
40 <a href="{% static "images/screenshots/primitivus/primitivus_tarot.png" %}" target="#" class="thumbnail">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
41 <img src="{% static "images/screenshots/primitivus/primitivus_tarot.png" %}" alt="{% trans "Primitivus showing a french Tarot play" %}">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
42 </a>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
43 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
44
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
45 <div class="col-md-4">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
46 <h2>{% trans "Jp" %} <small>{% trans "command line" %}</small></h2>
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
47 <a href="{% static "images/screenshots/jp/jp.png" %}" target="#" class="thumbnail">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
48 <img src="{% static "images/screenshots/jp/jp.png" %}" alt="{% trans "cowsay on jp" %}">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
49 </a>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
50 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
51
38
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
52 </div>
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
53 <div class="row">
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
54
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
55 <div class="col-md-4">
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
56 <h2>{% trans "Bellaciao" %} <small>{% trans "rich desktop" %}</small></h2>
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
57 <h5 class="wip">{% trans "[WORK IN PROGRESS]" %}</h5>
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
58 <p class="desc">{% blocktrans %}Bellaciao will be a full-featured desktop frontend that intends to be really flexible: you'll be able to adapt it to your taste.{% endblocktrans %}</p>
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
59 </div>
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
60
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
61 <div class="col-md-4">
141
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
62 <h2>{% trans "Cagou" %} <small>{% trans "desktop and mobile devices" %}</small></h2>
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
63 <h5 class="wip">{% trans "[WORK IN PROGRESS]" %}</h5>
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
64 <a href="{% static "images/screenshots/cagou/cagou_debut.png" %}" target="#" class="thumbnail">
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
65 <img src="{% static "images/screenshots/cagou/cagou_debut.png" %}" alt="{% trans "Cagou profile manager" %}">
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
66 </a>
38
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
67 </div>
e501f5ff7191 remove technical terms from frontends.html, replace wix with cagou
souliane <souliane@mailoo.org>
parents: 35
diff changeset
68
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
69 <div class="col-md-4">
141
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
70 <h2>{% trans "Sententia" %} <small>{% trans "Emacs frontend" %}</small></h2>
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
71 <h5 class="wip">{% trans "[WORK IN PROGRESS]" %}</h5>
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
72 <a href="{% static "images/screenshots/sententia/sententia.png" %}" target="#" class="thumbnail">
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
73 <img src="{% static "images/screenshots/sententia/sententia.png" %}" alt="{% trans "Sententia" %}">
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
74 </a>
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
75 </div>
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
76
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
77 {% comment %}
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
78 <div class="col-md-4">
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
79 <p id="bigmark">?</p>
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
80 <h4 id="bigmark_subtext">{% trans "Your idea here" %}</h4>
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
81 </div>
141
ebd55a28b6d2 add cagou and sententia screenshots
souliane <souliane@mailoo.org>
parents: 127
diff changeset
82 {% endcomment %}
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 45
diff changeset
83
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
84 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
85
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
86 {% endblock %}