annotate templates/sat_website/overview.html @ 0:9305c6458e2f

initial commit
author Goffi <goffi@goffi.org>
date Sat, 28 Jul 2012 20:36:32 +0200
parents
children 0df46e87537d
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
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
23 {% load staticfiles %}
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
24 {% block content %}
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
25 <div class="container">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
26 <div class="hero-unit">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
27 <h1><img id="overview_logo" src="{% static "images/sat_logo_128.png" %}" >Salut à Toi</h1>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
28 <h2>The multi-frontends multi-purposes communication tool</h2>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
29 <p>Libre, Decentralised, Standard and Federated</p>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
30 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
31 <div class="row">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
32 <div class="span6">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
33 <h1>Multi-frontends</h1>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
34 SàT can be used with <a href="frontends.html">different interfaces</a>, the heart of the software is independent. That mean that you can use SàT:
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
35 <ul>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
36 <li>with a browser though the <strong>web</strong> interface</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
37 <li>on your <strong>desktop</strong>, with the power of a native, integrated application</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
38 <li>inside a <strong>console</strong> user interface</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
39 <li>through a <strong>command line</strong></li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
40 <li>other frontends are planed (e.g.: small screens), and it's always possible to adapt one to fit your needs</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
41 </ul>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
42 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
43 <div class="span6">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
44 <h1>Multi-purposes</h1>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
45 Based on the powerful <abbr title="eXtensible Messaging and Presence Protocol">XMPP</abbr> standard, SàT can do instant messaging of course, but also many other things (and still counting). Here are some of the <a href="features.html">features</a>:
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
46 <ul>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
47 <li>Microblogging: share your thoughts instantaneously</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
48 <li>Group permissions: share what you want with only the people you want</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
49 <li>File Sharing</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
50 <li>Games</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
51 <li>Interaction with other networks: talk to your friends on IRC, StatusNet, other XMPP networks, or potentially any network</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
52 <li>Email client access: connect directly with any email client (<abbr title="Mail User Agent">MUA</abbr>) like KMail or Thunderbird, and send message on any supported network</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
53 <li>and many, many other features (it's extensible !)</li>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
54 </ul>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
55 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
56 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
57 <div class="row">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
58 <div class="span3">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
59 <h1>Libre</h1>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
60 Salut à Toi is Libre (free as in freedom), that means that it follow the free software philosophy, not only because it's the best way to develop a software, but also for the share and freedom spirit.<br>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
61 In addition, Salut à Toi follow a <strong>social contract</strong>: a moral engagment with the user.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
62 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
63 <div class="span3">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
64 <h1>Decentralised</h1>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
65 By being based on <abbr title="eXtensible Messaging and Presence Protocol">XMPP</abbr>, SàT is naturally decentralised. That mean that there is not one big server somewhere where all the data are staying. 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 ?).
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
66 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
67 <div class="span3">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
68 <h1>Standard</h1>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
69 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 <abbr title="XMPP Standards Foundation">XSF</abbr> is the guarantor of the evolution and stability of the protocol. That means that SàT can communicate easily with other <abbr title="eXtensible Messaging and Presence Protocol">XMPP</abbr> projects: the way it "talk" to others is fully documented.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
70 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
71 <div class="span3">
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
72 <h1>Federated</h1>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
73 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&nbsp;!
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
74
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
75 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
76
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
77 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
78
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
79 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
80 {% endblock %}