Mercurial > sat_legacy_website
annotate templates/sat_website/community.html @ 5:e45aed963722
templates: added ?join to xmpp links to muc room
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 31 Jul 2012 13:58:23 +0200 |
parents | 0df46e87537d |
children | 9389a4fcc070 |
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 community" %}{% endblock %} |
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
26 {% block subtext %}{% trans "Join us to talk, contribute, share around Salut à Toi" %}{% endblock %} |
0 | 27 {% block main_container %} |
28 <div class="row"> | |
29 <h4 class="alert alert-success"> | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
30 {% trans "Join us on Jabber :)" %} |
0 | 31 </h4> |
32 <div class="info"> | |
5
e45aed963722
templates: added ?join to xmpp links to muc room
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
33 <p>{% blocktrans with sat_muc="<a href=\"xmpp:sat@chat.jabberfr.org?join\">sat@chat.jabberfr.org</a>" %}Salut à Toi's MUC room is <strong>*the*</strong> place to discuss about the project: {{ sat_muc }}{% endblocktrans %}</p> |
0 | 34 </div> |
35 </div> | |
36 | |
37 <div class="row"> | |
38 <h4 class="alert alert-success"> | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
39 {% trans "Follow the development, learn" %} |
0 | 40 </h4> |
41 <div class="info"> | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
42 <p>{% blocktrans with mailing_list="<a href=\"http://lists.goffi.org\">http://lists.goffi.org</a>" %}you can subscribe to the mailing list to follow the progression, you're welcome to give your opinion (and to contribute): {{ mailing_list }}{% endblocktrans %}</p> |
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
43 <p>{% blocktrans with wiki="<a href=\"http://wiki.goffi.org\">http://wiki.goffi.org</a>" %}You'll find user documentation and more technical one on the wiki: {{ wiki }}{% endblocktrans %}</p> |
0 | 44 </div> |
45 | |
46 </div> | |
47 | |
48 <div class="row"> | |
49 <h4 class="alert alert-success"> | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
50 {% trans "Participate !" %} |
0 | 51 </h4> |
52 <div class="info"> | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
53 <p>{% blocktrans %}SàT is an open project: come and discuss, give your opinion, share your thoughts. The more people will participate, the better the project will be. Share your view not only on technical points, but also on philosophical or political ones. And if you are around, come to have a talk in real life :){% endblocktrans %}</p> |
0 | 54 </div> |
55 </div> | |
56 {% endblock %} |