view templates/sat_website/community.html @ 124:5aad1b36183f

fixes some spaces before question or exclamation marks
author souliane <souliane@mailoo.org>
date Fri, 06 Nov 2015 10:15:33 +0100
parents f3b907d0e5ab
children
line wrap: on
line source

{% extends "sat_website/category.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 i18n %}
{% load staticfiles %}

{% block headline %}{% trans "Salut à Toi's community" %}{% endblock %}
{% block subtext %}{% trans "Join us to talk, contribute or share about Salut à Toi" %}{% endblock %}
{% block main_container %}

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Contact the association" %}
    </h5>
    <div class="info">
        <p>{% trans "To contact the managers of the association, please write an email to" %} <a href="mailto:contact@salut-a-toi.invalid">contact@salut-a-toi.invalid</a> {% trans "(replace invalid with org)" %}.</p>
    </div>
</div>

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Enter the chat room" %}
    </h5>
    <div class="info">
        <p>{% blocktrans with sat_muc="<a target=\"#\" href=\"http://chat.jabberfr.org/muckl_int/index.php?room=sat\">xmpp:sat@chat.jabberfr.org</a>" %}Salut à Toi's multi-user chat room is the best place to discuss the project. There are many ways to join it, for example using Libervia, but if you prefer to not create any account, just click the following link: {{ sat_muc }}. Please note that you can't send an email to this chat room: its identifier looks like an email address but it's not!{% endblocktrans %}</p>
    </div>
</div>

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Follow the development and learn" %}
    </h5>
    <div class="info">
        <p>{% blocktrans with blog="<a target=\"#\" href=\"http://www.goffi.org\">http://www.goffi.org</a>" %}On the main developer's blog, you'll get recent information/reflections about SàT's features (and also more general ones): {{ blog }}{% endblocktrans %}</p>
        <p>{% blocktrans with mailing_list="<a target=\"#\" href=\"http://lists.goffi.org/listinfo/users\">http://lists.goffi.org/listinfo/users</a>" %}You can subscribe to the users mailing list to follow the progression, give your opinion and contribute: {{ mailing_list }}{% endblocktrans %}</p>
        <p>{% blocktrans with wiki="<a target=\"#\" href=\"http://wiki.goffi.org/wiki/Cat%C3%A9gorie:Documentation_utilisateur\">http://wiki.goffi.org/wiki/Catégorie:Documentation_utilisateur</a>" %}You'll find some user documentation on the wiki: {{ wiki }}{% endblocktrans %}</p>
    </div>
    
</div>

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Participate!" %}
    </h5>
    <div class="info">
        <p>{% blocktrans %}SàT is an open project: come and discuss, give your opinion and share your thoughts. The more people that 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>
    </div>
</div>

{% endblock %}