annotate templates/sat_website/community.html @ 48:3b4ba14d1e26

update features.html + other small changes
author souliane <souliane@mailoo.org>
date Sun, 03 May 2015 22:39:02 +0200
parents 10ce34ab389a
children 0d20fb28c32e
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 community" %}{% endblock %}
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
27 {% block subtext %}{% trans "Join us to talk, contribute, share around Salut à Toi" %}{% 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">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 12
diff changeset
31 <h5 class="alert alert-success">
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 35
diff changeset
32 {% trans "Enter the chat room" %}
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 12
diff changeset
33 </h5>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
34 <div class="info">
48
3b4ba14d1e26 update features.html + other small changes
souliane <souliane@mailoo.org>
parents: 35
diff changeset
35 <p>{% blocktrans with sat_muc="<a href=\"xmpp:sat@chat.jabberfr.org?join\">sat@chat.jabberfr.org</a>" %}Salut à Toi's multi-user chat room is <strong>*the*</strong> place to discuss about the project: {{ sat_muc }}{% endblocktrans %}</p>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
36 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
37 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
38
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
39 <div class="row">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 12
diff changeset
40 <h5 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
41 {% trans "Follow the development, learn" %}
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 12
diff changeset
42 </h5>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
43 <div class="info">
12
8ecf9c1db4f4 changed the sentence presenting the blog in community page
Goffi <goffi@goffi.org>
parents: 10
diff changeset
44 <p>{% blocktrans with blog="<a href=\"http://www.goffi.org\">http://www.goffi.org</a>" %}In the blog of the main developer you'll have recent informations/reflections abouts features or more general ones: {{ blog }}{% endblocktrans %}</p>
10
9389a4fcc070 added link to the blog in community page
Goffi <goffi@goffi.org>
parents: 5
diff changeset
45 <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>
2
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
46 <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
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
47 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
48
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
49 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
50
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
51 <div class="row">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 12
diff changeset
52 <h5 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
53 {% trans "Participate !" %}
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 12
diff changeset
54 </h5>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
55 <div class="info">
2
0df46e87537d i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents: 0
diff changeset
56 <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
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
57 </div>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
58 </div>
35
10ce34ab389a dummy patch (just add some new lines to make space between the blocks)
souliane <souliane@mailoo.org>
parents: 26
diff changeset
59
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
60 {% endblock %}