annotate templates/sat_website/overview.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 73c6333fd124
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/base.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 %}
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
24 {% load staticfiles %}
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
25
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
26 {% block content %}
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
27 <div class="container">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
28 <div class="jumbotron">
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
29 <h1><img id="overview_logo" src="{% static "images/sat_logo_128.png" %}" >Salut à Toi</h1>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
30 <h3>{% blocktrans %}The multi-frontends multi-purposes communication tool{% endblocktrans %}</h3>
2
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
31 <p>{% blocktrans %}Libre, Decentralised, Standard and Federated{% endblocktrans %}</p>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
32 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
33 <div class="row">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
34 <div class="col-md-6">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
35 <h2>{% trans "Multi-frontends" %}</h2>
21
8cfc33e4d435 add video showing the ad-hoc commands + fix some English
souliane <souliane@mailoo.org>
parents: 2
diff changeset
36 {% blocktrans with frontends_prefix="<a href=\"frontends.html\">" frontends_suffix="</a>"%}SàT can be used with {{ frontends_prefix }}different interfaces{{ frontends_suffix }}, the heart of the software is independent. That means that you can use SàT:{% endblocktrans %}
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
37 <ul>
2
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
38 <li>{% blocktrans %}with a browser though the <strong>web</strong> interface{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
39 <li>{% blocktrans %}on your <strong>desktop</strong>, with the power of a native, integrated application{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
40 <li>{% blocktrans %}inside a <strong>console</strong> user interface{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
41 <li>{% blocktrans %}through a <strong>command line</strong>{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
42 <li>{% blocktrans %}other frontends are planed (e.g.: small screens), and it's always possible to adapt one to fit your needs{% endblocktrans %}</li>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
43 </ul>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
44 </div>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
45 <div class="col-md-6">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
46 <h2>{% trans "Multi-purposes" %}</h2>
2
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
47 {% blocktrans with xmpp="<abbr title=\"eXtensible Messaging and Presence Protocol\">XMPP</abbr>" features_prefix="<a href=\"features.html\">" features_suffix="</a>" %} Based on the powerful {{ xmpp }} standard, SàT can do instant messaging of course, but also many other things (and still counting). Here are some of the {{ features_prefix }}features{{ features_suffix }}:{% endblocktrans %}
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
48 <ul>
2
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
49 <li>{% blocktrans %}Microblogging: share your thoughts instantaneously{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
50 <li>{% blocktrans %}Group permissions: share what you want with only the people you want{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
51 <li>{% blocktrans %}File Sharing{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
52 <li>{% blocktrans %}Games{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
53 <li>{% blocktrans %}Interaction with other networks: talk to your friends on IRC, StatusNet, other XMPP networks, or potentially any network{% endblocktrans %}</li>
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
54 <li>{% blocktrans with mua="<abbr title=\"Mail User Agent\">MUA</abbr>" %}Email client access: connect directly with any email client ({{ mua }}) like KMail or Thunderbird, and send message on any supported network{% endblocktrans %}</li>
21
8cfc33e4d435 add video showing the ad-hoc commands + fix some English
souliane <souliane@mailoo.org>
parents: 2
diff changeset
55 <li>{% blocktrans %}and many, many other features (it's extensible!){% endblocktrans %}</li>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
56 </ul>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
57 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
58 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
59 <div class="row">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
60 <div class="col-md-3">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
61 <h2>{% trans "Libre" %}</h2>
21
8cfc33e4d435 add video showing the ad-hoc commands + fix some English
souliane <souliane@mailoo.org>
parents: 2
diff changeset
62 {% blocktrans %}Salut à Toi is Libre (free as in freedom), that means that it follows the free software philosophy, not only because it's the best way to develop a software, but also for the share and freedom spirit.{% endblocktrans %}<br>
8cfc33e4d435 add video showing the ad-hoc commands + fix some English
souliane <souliane@mailoo.org>
parents: 2
diff changeset
63 {% blocktrans %}In addition, Salut à Toi follows a <strong>social contract</strong>: a moral engagment with the user.{% endblocktrans %}
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
64 </div>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
65 <div class="col-md-3">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
66 <h2>{% trans "Decentralised" %}</h2>
21
8cfc33e4d435 add video showing the ad-hoc commands + fix some English
souliane <souliane@mailoo.org>
parents: 2
diff changeset
67 {% blocktrans with xmpp="<abbr title=\"eXtensible Messaging and Presence Protocol\">XMPP</abbr>" %}By being based on {{ xmpp }}, SàT is naturally decentralised. That means that there is not one big server somewhere where all the data are stored. That's the only good way to fight against censorship, and to keep control of your data (you don't want to have your private pictures or intimate messages to be in the hands of an untrusted commercial company, do you?).{% endblocktrans %}
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
68 </div>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
69 <div class="col-md-3">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
70 <h2>{% trans "Standard" %}</h2>
21
8cfc33e4d435 add video showing the ad-hoc commands + fix some English
souliane <souliane@mailoo.org>
parents: 2
diff changeset
71 {% blocktrans with xsf="<abbr title=\"XMPP Standards Foundation\">XSF</abbr>" xmpp="<abbr title=\"eXtensible Messaging and Presence Protocol\">XMPP</abbr>" %}Using a standard protocol is a key point: it's robust, widely used and tested, well documented. Every change is discussed publicly, there are debates on the best way to do things, and the {{ xsf }} is the guarantor of the evolution and stability of the protocol. That means that SàT can communicate easily with other {{xmpp}} projects: the way it "talks" to others is fully documented.{% endblocktrans %}
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
72 </div>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
73 <div class="col-md3">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 21
diff changeset
74 <h2>{% trans "Federated" %}</h2>
21
8cfc33e4d435 add video showing the ad-hoc commands + fix some English
souliane <souliane@mailoo.org>
parents: 2
diff changeset
75 {% blocktrans %}Federation means that SàT is open to the world: it can communicate on the global Jabber network. You can of course make your own private network if you wants, but with SàT you have the ability to send messages to somebody on an other server, using a different client. That's at the opposite of some proprietary and commercial networks which tend to lock their users up. Open your borders!{% endblocktrans %}
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
76 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
77 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
78 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
79 {% endblock %}