diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/sat_website/overview.html	Sat Jul 28 20:36:32 2012 +0200
@@ -0,0 +1,80 @@
+{% extends "sat_website/base.html" %}
+
+{% comment %}
+SàT website: Salut à Toi's presentation website
+Copyright (C) 2012  Jérôme Poisson (goffi@goffi.org)
+
+This file is part of SàT website.
+
+SàT website is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Foobar is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU Affero General Public License for more details.
+
+You should have received a copy of the GNU Affero General Public License
+along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
+{% endcomment %}
+
+	{% load staticfiles %}
+	{% block content %}
+	<div class="container">
+		<div class="hero-unit">
+				<h1><img id="overview_logo" src="{% static "images/sat_logo_128.png" %}" >Salut à Toi</h1>
+				<h2>The multi-frontends multi-purposes communication tool</h2>
+				<p>Libre, Decentralised, Standard and Federated</p>
+		</div>
+		<div class="row">
+			<div class="span6">
+				<h1>Multi-frontends</h1>
+				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:
+				<ul>
+					<li>with a browser though the <strong>web</strong> interface</li>
+					<li>on your <strong>desktop</strong>, with the power of a native, integrated application</li>
+					<li>inside a <strong>console</strong> user interface</li>
+					<li>through a <strong>command line</strong></li> 
+					<li>other frontends are planed (e.g.: small screens), and it's always possible to adapt one to fit your needs</li>
+				</ul>
+			</div>
+			<div class="span6">
+				<h1>Multi-purposes</h1>
+				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>:
+				<ul>
+					<li>Microblogging: share your thoughts instantaneously</li>
+					<li>Group permissions: share what you want with only the people you want</li>
+					<li>File Sharing</li>
+					<li>Games</li>
+					<li>Interaction with other networks: talk to your friends on IRC, StatusNet, other XMPP networks, or potentially any network</li>
+					<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>
+					<li>and many, many other features (it's extensible !)</li>
+				</ul>
+			</div>
+		</div>
+		<div class="row">
+			<div class="span3">
+				<h1>Libre</h1>
+				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>
+				In addition, Salut à Toi follow a <strong>social contract</strong>: a moral engagment with the user. 
+			</div>
+			<div class="span3">
+				<h1>Decentralised</h1>
+				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 ?).
+			</div>
+			<div class="span3">
+				<h1>Standard</h1>
+				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.
+			</div>
+			<div class="span3">
+				<h1>Federated</h1>
+				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;! 
+				
+			</div>
+			
+		</div>
+		
+	</div>
+{% endblock %}